From 5031946fb5c781b6cff3ea3413bde7040c23b064 Mon Sep 17 00:00:00 2001 From: zhoupengcheng Date: Tue, 18 Jun 2024 19:58:48 +0800 Subject: [PATCH] delete redundant patch --- ...ndefined-buffer-detected-by-oss-fuzz.patch | 30 ------------------- zlib.spec | 6 ++-- 2 files changed, 4 insertions(+), 32 deletions(-) delete mode 100644 fix-undefined-buffer-detected-by-oss-fuzz.patch diff --git a/fix-undefined-buffer-detected-by-oss-fuzz.patch b/fix-undefined-buffer-detected-by-oss-fuzz.patch deleted file mode 100644 index 5a94ce0..0000000 --- a/fix-undefined-buffer-detected-by-oss-fuzz.patch +++ /dev/null @@ -1,30 +0,0 @@ -From fbc28a919107bb6fbdceb2d3dfe610ddcbc5ac89 Mon Sep 17 00:00:00 2001 -From: fangyufa -Date: Tue, 3 Dec 2019 15:42:06 +0800 -Subject: [PATCH] zlib: fix undefined buffer detected by oss-fuzz - -this patch fixes a use of uninitialized value discovered by one of the -fuzzers of the oss-fuzz project: -https://github.com/google/oss-fuzz/blob/master/projects/zlib/example_dict_fuzzer.c -clear out s->prev buffer to avoid undefined behavior - -signed-off-by: fangyufa ---- - zlib-1.2.11/deflate.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/deflate.c b/deflate.c -index 4c42259..a03bef2 100644 ---- a/deflate.c -+++ b/deflate.c -@@ -329,6 +329,7 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, - - s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); - s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); -+ memset(s->prev, 0, s->w_size*sizeof(Pos)); - s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); - - s->high_water = 0; /* nothing written to s->window yet */ --- -2.19.1 - diff --git a/zlib.spec b/zlib.spec index 51af570..bcbe0b0 100644 --- a/zlib.spec +++ b/zlib.spec @@ -1,6 +1,6 @@ Name: zlib Version: 1.2.11 -Release: 23 +Release: 24 Summary: A lossless data-compression library License: zlib and Boost URL: http://www.zlib.net @@ -14,7 +14,6 @@ Patch2: 0002-Porting-optimized-longest_match.patch Patch3: 0003-arm64-specific-build-patch.patch Patch4: 0004-zlib-Optimize-CRC32.patch -Patch6000: fix-undefined-buffer-detected-by-oss-fuzz.patch Patch6001: backport-0001-CVE-2018-25032.patch Patch6002: backport-0002-CVE-2018-25032.patch Patch6003: backport-0001-CVE-2022-37434.patch @@ -133,6 +132,9 @@ make test %{_libdir}/pkgconfig/minizip.pc %changelog +* Tue Jun 18 2024 zhoupengcheng - 1.2.11-24 +- delete redundant patch + * Wed Oct 18 2023 liningjie - 1.2.11.23 - DESC:Fix CVE-2023-45853 -- Gitee