summaryrefslogtreecommitdiff
path: root/infutil.h
diff options
context:
space:
mode:
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 */