summaryrefslogtreecommitdiff
path: root/infutil.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:19:21 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:19:21 -0700
commitb8c9ecb0765fc39423c07613d909c5193378bdfd (patch)
treec2a2964d00dcfee6c7426ffcdf8e8060727bc2bf /infutil.h
parent6759211ad8a5006689216a86c3267bb503bfccc1 (diff)
downloadzlib-1.0.9.tar.gz
zlib-1.0.9.tar.bz2
zlib-1.0.9.zip
zlib 1.0.9v1.0.9
Diffstat (limited to 'infutil.h')
-rw-r--r--infutil.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/infutil.h b/infutil.h
index 121316b..99d1135 100644
--- a/infutil.h
+++ b/infutil.h
@@ -41,8 +41,6 @@ struct inflate_blocks_state {
41 inflate_huft *tb; /* bit length decoding tree */ 41 inflate_huft *tb; /* bit length decoding tree */
42 } trees; /* if DTREE, decoding info for trees */ 42 } trees; /* if DTREE, decoding info for trees */
43 struct { 43 struct {
44 inflate_huft *tl;
45 inflate_huft *td; /* trees to free */
46 inflate_codes_statef 44 inflate_codes_statef
47 *codes; 45 *codes;
48 } decode; /* if CODES, current state */ 46 } decode; /* if CODES, current state */
@@ -52,6 +50,7 @@ struct inflate_blocks_state {
52 /* mode independent information */ 50 /* mode independent information */
53 uInt bitk; /* bits in bit buffer */ 51 uInt bitk; /* bits in bit buffer */
54 uLong bitb; /* bit buffer */ 52 uLong bitb; /* bit buffer */
53 inflate_huft *hufts; /* single malloc for tree space */
55 Bytef *window; /* sliding window */ 54 Bytef *window; /* sliding window */
56 Bytef *end; /* one byte after sliding window */ 55 Bytef *end; /* one byte after sliding window */
57 Bytef *read; /* window read pointer */ 56 Bytef *read; /* window read pointer */