diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:08:28 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:08:28 -0700 |
commit | 6b834a58bdef976383cff6e2a83f353e668a9cf1 (patch) | |
tree | 5527def57f9d6eac4f3e709c10b9fd89905f2445 /infutil.h | |
parent | bdde4e09d21edff02ea5093b7f6eccbf166b272f (diff) | |
download | zlib-0.93.tar.gz zlib-0.93.tar.bz2 zlib-0.93.zip |
zlib 0.93v0.93
Diffstat (limited to '')
-rw-r--r-- | infutil.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 | ||