mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 05:06:29 +08:00
8afb2f0cb7
ozz-fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13317
PR: https://github.com/opencv/opencv/pull/14193
zlib upstream bug: madler/zlib#245
Ported fix: ee376c65ab
13 lines
502 B
Diff
13 lines
502 B
Diff
diff --git a/3rdparty/zlib/inflate.c b/3rdparty/zlib/inflate.c
|
|
index ac333e8c2e..19a2cf2ed8 100644
|
|
--- a/3rdparty/zlib/inflate.c
|
|
+++ b/3rdparty/zlib/inflate.c
|
|
@@ -228,6 +228,7 @@ int stream_size;
|
|
state->strm = strm;
|
|
state->window = Z_NULL;
|
|
state->mode = HEAD; /* to pass state test in inflateReset2() */
|
|
+ state->check = 1L; /* 1L is the result of adler32() zero length data */
|
|
ret = inflateReset2(strm, windowBits);
|
|
if (ret != Z_OK) {
|
|
ZFREE(strm, state);
|