Skip to content

Commit aa96fbe

Browse files
nodejs-github-botmarco-ippolito
authored andcommitted
deps: update zlib to 1.3.0.1-motley-4f653ff
PR-URL: #53052 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
1 parent a721570 commit aa96fbe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

deps/zlib/google/zip_internal.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ struct ZipBuffer {
165165
// writing compressed data and it returns NULL for this case.)
166166
void* 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

src/zlib_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
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_

0 commit comments

Comments
 (0)