summaryrefslogtreecommitdiff
path: root/infutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'infutil.h')
-rw-r--r--infutil.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/infutil.h b/infutil.h
index f234e9b..b5639d6 100644
--- a/infutil.h
+++ b/infutil.h
@@ -35,8 +35,11 @@ struct inflate_blocks_state {
35 uInt bb; /* bit length tree depth */ 35 uInt bb; /* bit length tree depth */
36 inflate_huft *tb; /* bit length decoding tree */ 36 inflate_huft *tb; /* bit length decoding tree */
37 } trees; /* if DTREE, decoding info for trees */ 37 } trees; /* if DTREE, decoding info for trees */
38 struct inflate_codes_state 38 struct {
39 *codes; /* if CODES, current state */ 39 inflate_huft *tl, *td; /* trees to free */
40 struct inflate_codes_state
41 *codes;
42 } decode; /* if CODES, current state */
40 } sub; /* submode */ 43 } sub; /* submode */
41 uInt last; /* true if this block is the last block */ 44 uInt last; /* true if this block is the last block */
42 45