blob: c974f7a0e8ab74da2a8477e395049717ab49284e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- a/third_party/zlib/google/zip_reader.cc
+++ b/third_party/zlib/google/zip_reader.cc
@@ -278,10 +278,9 @@
current_entry_info_.reset();
reached_end_ = false;
- const int kDefaultCaseSensivityOfOS = 0;
const int result = unzLocateFile(zip_file_,
path_in_zip.AsUTF8Unsafe().c_str(),
- kDefaultCaseSensivityOfOS);
+ NULL);
if (result != UNZ_OK)
return false;
|