| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -165,7 +165,7 @@ struct ZipBuffer { | |||
| 165 | 165 | // writing compressed data and it returns NULL for this case.) | |
| 166 | 166 | void* OpenZipBuffer(void* opaque, const void* /*filename*/, int mode) { | |
| 167 | 167 | if ((mode & ZLIB_FILEFUNC_MODE_READWRITEFILTER) != ZLIB_FILEFUNC_MODE_READ) { | |
| 168 | - NOTREACHED(); | ||
| 168 | + NOTREACHED_IN_MIGRATION(); | ||
| 169 | 169 | return NULL; | |
| 170 | 170 | } | |
| 171 | 171 | ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); | |
@@ -196,7 +196,7 @@ uLong WriteZipBuffer(void* /*opaque*/, | |||
| 196 | 196 | void* /*stream*/, | |
| 197 | 197 | const void* /*buf*/, | |
| 198 | 198 | uLong /*size*/) { | |
| 199 | - NOTREACHED(); | ||
| 199 | + NOTREACHED_IN_MIGRATION(); | ||
| 200 | 200 | return 0; | |
| 201 | 201 | } | |
| 202 | 202 | ||
@@ -228,7 +228,7 @@ long SeekZipBuffer(void* opaque, | |||
| 228 | 228 | buffer->offset = std::min(buffer->length, offset); | |
| 229 | 229 | return 0; | |
| 230 | 230 | } | |
| 231 | - NOTREACHED(); | ||
| 231 | + NOTREACHED_IN_MIGRATION(); | ||
| 232 | 232 | return -1; | |
| 233 | 233 | } | |
| 234 | 234 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,5 +2,5 @@ | |||
| 2 | 2 | // Refer to tools/dep_updaters/update-zlib.sh | |
| 3 | 3 | #ifndef SRC_ZLIB_VERSION_H_ | |
| 4 | 4 | #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" | ||
| 6 | 6 | #endif // SRC_ZLIB_VERSION_H_ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments