diff options
author | Tom Rini <trini@konsulko.com> | 2024-07-05 09:44:54 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-05 13:57:02 -0600 |
commit | 7d22317a18e3ace2311c741bea74efa72299e57a (patch) | |
tree | 7fde587608497f2b1956713e8312c39d98a26b02 /lib/gzip.c | |
parent | 7a74e31938ad7534452efcf9ce6c82fc75402f59 (diff) |
Revert "Revert "Merge patch series "zlib: Address CVE-2016-9841"""
Now that the release has happened, bring back the update to zlib.
This reverts commit bbacdd3ef7762fbdeab43ceea5205d1fd0f25bbd.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'lib/gzip.c')
-rw-r--r-- | lib/gzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gzip.c b/lib/gzip.c index 5d9c19598d5..a9a3df524de 100644 --- a/lib/gzip.c +++ b/lib/gzip.c @@ -67,7 +67,7 @@ int zzip(void *dst, unsigned long *lenp, unsigned char *src, r = deflateInit2_(&s, Z_BEST_SPEED, Z_DEFLATED, window, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY, - ZLIB_VERSION, sizeof(z_stream)); + sizeof(z_stream)); if (r != Z_OK) { printf ("Error: deflateInit2_() returned %d\n", r); return -1; |