Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Unified Diff: third_party/zlib/google/zip_reader_unittest.cc

Issue 683913009: Eliminate resource leaks from zip::ZipFiles and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/zlib/google/zip_reader_unittest.cc
diff --git a/third_party/zlib/google/zip_reader_unittest.cc b/third_party/zlib/google/zip_reader_unittest.cc
index 09fc241bd6fc5fdcdf82449ed7953fa636d0a45e..2a66cc2b3ee34e522830b82f25df23505b2f3a25 100644
--- a/third_party/zlib/google/zip_reader_unittest.cc
+++ b/third_party/zlib/google/zip_reader_unittest.cc
@@ -180,8 +180,8 @@ TEST_F(ZipReaderTest, Open_ValidZipFile) {
}
TEST_F(ZipReaderTest, Open_ValidZipPlatformFile) {
- ZipReader reader;
FileWrapper zip_fd_wrapper(test_zip_file_, FileWrapper::READ_ONLY);
satorux1 2014/11/12 07:04:43 does this have to be moved? otherwise, keep it-as-
jeremyspiegel 2014/11/12 08:52:51 This doesn't have to be moved to work correctly, b
satorux1 2014/11/14 02:27:51 I see. There are many places in the file where Zip
jeremyspiegel 2014/11/14 23:49:25 Ah I missed those. Sounds good, I'll leave this as
+ ZipReader reader;
ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file()));
}
« third_party/zlib/google/zip_internal.cc ('K') | « third_party/zlib/google/zip_reader.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698