| Index: third_party/zlib/google/zip_reader.cc
|
| diff --git a/third_party/zlib/google/zip_reader.cc b/third_party/zlib/google/zip_reader.cc
|
| index c9f728c051ef1ec8a7c758aef58fb4117283936b..3acbb418d21cf905fc8861e5518de281b2497c65 100644
|
| --- a/third_party/zlib/google/zip_reader.cc
|
| +++ b/third_party/zlib/google/zip_reader.cc
|
| @@ -145,7 +145,8 @@ ZipReader::EntryInfo::EntryInfo(const std::string& file_name_in_zip,
|
|
|
| // We also consider that the file name is unsafe, if it's absolute.
|
| // On Windows, IsAbsolute() returns false for paths starting with "/".
|
| - if (file_path_.IsAbsolute() || StartsWithASCII(file_name_in_zip, "/", false))
|
| + if (file_path_.IsAbsolute() ||
|
| + base::StartsWithASCII(file_name_in_zip, "/", false))
|
| is_unsafe_ = true;
|
|
|
| // Construct the last modified time. The timezone info is not present in
|
|
|