8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff174f commit 626037cCopy full SHA for 626037c
deps/zlib/google/zip_internal.cc
@@ -165,7 +165,7 @@ struct ZipBuffer {
165
// writing compressed data and it returns NULL for this case.)
166
void* OpenZipBuffer(void* opaque, const void* /*filename*/, int mode) {
167
if ((mode & ZLIB_FILEFUNC_MODE_READWRITEFILTER) != ZLIB_FILEFUNC_MODE_READ) {
168
- NOTREACHED();
+ NOTREACHED_IN_MIGRATION();
169
return NULL;
170
}
171
ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque);
@@ -196,7 +196,7 @@ uLong WriteZipBuffer(void* /*opaque*/,
196
void* /*stream*/,
197
const void* /*buf*/,
198
uLong /*size*/) {
199
200
return 0;
201
202
@@ -228,7 +228,7 @@ long SeekZipBuffer(void* opaque,
228
buffer->offset = std::min(buffer->length, offset);
229
230
231
232
return -1;
233
234
src/zlib_version.h
@@ -2,5 +2,5 @@
2
// Refer to tools/dep_updaters/update-zlib.sh
3
#ifndef SRC_ZLIB_VERSION_H_
4
#define SRC_ZLIB_VERSION_H_
5
-#define ZLIB_VERSION "1.3.0.1-motley-7d77fb7"
+#define ZLIB_VERSION "1.3.0.1-motley-4f653ff"
6
#endif // SRC_ZLIB_VERSION_H_