File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ struct ZipBuffer {
165165// writing compressed data and it returns NULL for this case.)
166166void * OpenZipBuffer (void * opaque, const void * /* filename*/ , int mode) {
167167 if ((mode & ZLIB_FILEFUNC_MODE_READWRITEFILTER) != ZLIB_FILEFUNC_MODE_READ) {
168- NOTREACHED ();
168+ NOTREACHED_IN_MIGRATION ();
169169 return NULL ;
170170 }
171171 ZipBuffer* buffer = static_cast <ZipBuffer*>(opaque);
@@ -196,7 +196,7 @@ uLong WriteZipBuffer(void* /*opaque*/,
196196 void * /* stream*/ ,
197197 const void * /* buf*/ ,
198198 uLong /* size*/ ) {
199- NOTREACHED ();
199+ NOTREACHED_IN_MIGRATION ();
200200 return 0 ;
201201}
202202
@@ -228,7 +228,7 @@ long SeekZipBuffer(void* opaque,
228228 buffer->offset = std::min (buffer->length , offset);
229229 return 0 ;
230230 }
231- NOTREACHED ();
231+ NOTREACHED_IN_MIGRATION ();
232232 return -1 ;
233233}
234234
Original file line number Diff line number Diff line change 22// Refer to tools/dep_updaters/update-zlib.sh
33#ifndef SRC_ZLIB_VERSION_H_
44#define SRC_ZLIB_VERSION_H_
5- #define ZLIB_VERSION "1.3.0.1-motley-7d77fb7 "
5+ #define ZLIB_VERSION "1.3.0.1-motley-4f653ff "
66#endif // SRC_ZLIB_VERSION_H_
You can’t perform that action at this time.
0 commit comments