summaryrefslogtreecommitdiff
path: root/zlib/gzlib.c
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2022-03-31 09:18:51 +0100
committerChris Liddell <chris.liddell@artifex.com>2022-03-31 14:13:49 +0100
commitfa56e7d614b1af616deb6bbc8064f3b0ccf4254f (patch)
treedc85b8a72779439170f37e3eb7c97943ba0e6b5e /zlib/gzlib.c
parent00f6bd069221701d054abc67909e80ff61561d75 (diff)
downloadghostpdl-fa56e7d614b1af616deb6bbc8064f3b0ccf4254f.tar.gz
Update zlib to 1.2.12gs9.56.0_zlib_1.2.12
Diffstat (limited to 'zlib/gzlib.c')
-rw-r--r--zlib/gzlib.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/zlib/gzlib.c b/zlib/gzlib.c
index 4105e6aff..dddaf2687 100644
--- a/zlib/gzlib.c
+++ b/zlib/gzlib.c
@@ -1,11 +1,11 @@
/* gzlib.c -- zlib functions common to reading and writing gzip files
- * Copyright (C) 2004-2017 Mark Adler
+ * Copyright (C) 2004-2019 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
#include "gzguts.h"
-#if defined(_WIN32) && !defined(__BORLANDC__) && !defined(__MINGW32__)
+#if defined(_WIN32) && !defined(__BORLANDC__)
# define LSEEK _lseeki64
#else
#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
@@ -81,6 +81,8 @@ local void gz_reset(state)
state->past = 0; /* have not read past end yet */
state->how = LOOK; /* look for gzip header */
}
+ else /* for writing ... */
+ state->reset = 0; /* no deflateReset pending */
state->seek = 0; /* no seek request pending */
gz_error(state, Z_OK, NULL); /* clear error */
state->x.pos = 0; /* no uncompressed data yet */
@@ -397,7 +399,7 @@ z_off64_t ZEXPORT gzseek64(file, offset, whence)
/* if within raw area while reading, just go there */
if (state->mode == GZ_READ && state->how == COPY &&
state->x.pos + offset >= 0) {
- ret = LSEEK(state->fd, offset - state->x.have, SEEK_CUR);
+ ret = LSEEK(state->fd, offset - (z_off64_t)state->x.have, SEEK_CUR);
if (ret == -1)
return -1;
state->x.have = 0;