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

Unified Diff: third_party/zlib/google/zip_internal.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_internal.cc
diff --git a/third_party/zlib/google/zip_internal.cc b/third_party/zlib/google/zip_internal.cc
index d62e0bbf21141b32194612d567e962f052463d2c..cd2c0eb1748f247bb38731e3c630062a8c70ff82 100644
--- a/third_party/zlib/google/zip_internal.cc
+++ b/third_party/zlib/google/zip_internal.cc
@@ -90,17 +90,17 @@ void* FdOpenFileFunc(void* opaque, const char* filename, int mode) {
else if (mode & ZLIB_FILEFUNC_MODE_CREATE)
mode_fopen = "wb";
- if ((filename != NULL) && (mode_fopen != NULL))
- file = fdopen(*static_cast<int*>(opaque), mode_fopen);
+ if ((filename != NULL) && (mode_fopen != NULL)) {
+ int fd = dup(*static_cast<int*>(opaque));
+ if (fd != -1)
+ file = fdopen(fd, mode_fopen);
+ }
return file;
}
-// We don't actually close the file stream since that would close
-// the underlying file descriptor, and we don't own it. However we do need to
-// flush buffers and free |opaque| since we malloc'ed it in FillFdOpenFileFunc.
int CloseFileFunc(void* opaque, void* stream) {
- fflush(static_cast<FILE*>(stream));
+ fclose(static_cast<FILE*>(stream));
free(opaque);
return 0;
}
@@ -131,6 +131,11 @@ void* HandleOpenFileFunc(void* opaque, const char* filename, int mode) {
*(static_cast<WIN32FILE_IOWIN*>(ret)) = file_ret;
return ret;
}
+
+int HandleCloseFileFunc(void* opaque, void* stream) {
+ free(stream);
satorux1 2014/11/12 07:04:43 Good catch! maybe add a comment: // malloc'ed in
jeremyspiegel 2014/11/12 08:52:51 Sounds good.
+ return 0;
+}
#endif
// A struct that contains data required for zlib functions to extract files from
@@ -282,6 +287,7 @@ unzFile OpenHandleForUnzipping(HANDLE zip_handle) {
zlib_filefunc_def zip_funcs;
fill_win32_filefunc(&zip_funcs);
zip_funcs.zopen_file = HandleOpenFileFunc;
+ zip_funcs.zclose_file = HandleCloseFileFunc;
zip_funcs.opaque = zip_handle;
return unzOpen2("fd", &zip_funcs);
}

Powered by Google App Engine
This is Rietveld 408576698