2022-08-31 09:52:46 +02:00
|
|
|
Index: zlib-1.2.12/infback.c
|
2019-10-21 09:13:47 +02:00
|
|
|
===================================================================
|
2022-08-31 09:52:46 +02:00
|
|
|
--- zlib-1.2.12.orig/infback.c
|
|
|
|
+++ zlib-1.2.12/infback.c
|
2019-10-29 10:47:48 +01:00
|
|
|
@@ -34,9 +34,6 @@ int stream_size;
|
2019-10-21 09:13:47 +02:00
|
|
|
{
|
|
|
|
struct inflate_state FAR *state;
|
|
|
|
|
|
|
|
- if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
|
|
|
|
- stream_size != (int)(sizeof(z_stream)))
|
2019-10-29 10:47:48 +01:00
|
|
|
- return Z_VERSION_ERROR;
|
2019-10-21 09:13:47 +02:00
|
|
|
if (strm == Z_NULL || window == Z_NULL ||
|
|
|
|
windowBits < 8 || windowBits > 15)
|
2019-10-29 10:47:48 +01:00
|
|
|
return Z_STREAM_ERROR;
|
2022-08-31 09:52:46 +02:00
|
|
|
Index: zlib-1.2.12/inflate.c
|
2019-10-21 09:13:47 +02:00
|
|
|
===================================================================
|
2022-08-31 09:52:46 +02:00
|
|
|
--- zlib-1.2.12.orig/inflate.c
|
|
|
|
+++ zlib-1.2.12/inflate.c
|
|
|
|
@@ -202,9 +202,6 @@ int stream_size;
|
2019-10-21 09:13:47 +02:00
|
|
|
int ret;
|
|
|
|
struct inflate_state FAR *state;
|
|
|
|
|
|
|
|
- if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
|
|
|
|
- stream_size != (int)(sizeof(z_stream)))
|
2019-10-29 10:47:48 +01:00
|
|
|
- return Z_VERSION_ERROR;
|
2019-10-21 09:13:47 +02:00
|
|
|
if (strm == Z_NULL) return Z_STREAM_ERROR;
|
|
|
|
strm->msg = Z_NULL; /* in case we return an error */
|
2019-10-29 10:47:48 +01:00
|
|
|
if (strm->zalloc == (alloc_func)0) {
|
2022-08-31 09:52:46 +02:00
|
|
|
Index: zlib-1.2.12/deflate.c
|
2019-10-21 09:13:47 +02:00
|
|
|
===================================================================
|
2022-08-31 09:52:46 +02:00
|
|
|
--- zlib-1.2.12.orig/deflate.c
|
|
|
|
+++ zlib-1.2.12/deflate.c
|
|
|
|
@@ -253,12 +253,7 @@ int ZEXPORT deflateInit2_(strm, level, m
|
2019-10-21 09:13:47 +02:00
|
|
|
{
|
|
|
|
deflate_state *s;
|
|
|
|
int wrap = 1;
|
|
|
|
- static const char my_version[] = ZLIB_VERSION;
|
|
|
|
|
|
|
|
- if (version == Z_NULL || version[0] != my_version[0] ||
|
|
|
|
- stream_size != sizeof(z_stream)) {
|
2019-10-29 10:47:48 +01:00
|
|
|
- return Z_VERSION_ERROR;
|
|
|
|
- }
|
2019-10-21 09:13:47 +02:00
|
|
|
if (strm == Z_NULL) return Z_STREAM_ERROR;
|
2019-10-29 10:47:48 +01:00
|
|
|
|
|
|
|
strm->msg = Z_NULL;
|