diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 05:02:37 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 05:02:37 +0000 |
commit | e25a5b0f3e358a0bfd478cdc077af191fafe7ec6 (patch) | |
tree | ba338751a206d0619b75e60d27d889831bedd2c3 /decoder.h | |
parent | Adding upstream version 1.3. (diff) | |
download | lunzip-e25a5b0f3e358a0bfd478cdc077af191fafe7ec6.tar.xz lunzip-e25a5b0f3e358a0bfd478cdc077af191fafe7ec6.zip |
Adding upstream version 1.4~rc1.upstream/1.4_rc1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'decoder.h')
-rw-r--r-- | decoder.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -237,7 +237,6 @@ struct LZ_decoder int stream_pos; /* first byte not yet written to file */ uint32_t crc; int outfd; /* output file descriptor */ - int member_version; Bit_model bm_literal[1<<literal_context_bits][0x300]; Bit_model bm_match[states][pos_states]; @@ -314,7 +313,6 @@ static inline bool LZd_init( struct LZ_decoder * const decoder, decoder->stream_pos = 0; decoder->crc = 0xFFFFFFFFU; decoder->outfd = ofd; - decoder->member_version = Fh_version( header ); Bm_array_init( decoder->bm_literal[0], (1 << literal_context_bits) * 0x300 ); Bm_array_init( decoder->bm_match[0], states * pos_states ); |