diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-04 10:39:15 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-04 10:39:15 +0300 |
commit | 2496aee8a7741a8a0d42987db41ff2cf1a4bdabd (patch) | |
tree | 485938797f4c075008fc38f7209fba9ea52932e9 /src/liblzma/common/block_decoder.c | |
parent | Minor updates to the file format specification. (diff) | |
download | xz-2496aee8a7741a8a0d42987db41ff2cf1a4bdabd.tar.xz |
Don't allow LZMA_SYNC_FLUSH with decoders anymore. There's
simply nothing that would use it. Allow LZMA_FINISH to the
decoders, which will usually ignore it (auto decoder and
Stream decoder being exceptions).
Diffstat (limited to 'src/liblzma/common/block_decoder.c')
-rw-r--r-- | src/liblzma/common/block_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/block_decoder.c b/src/liblzma/common/block_decoder.c index 2c16a204..eab25a88 100644 --- a/src/liblzma/common/block_decoder.c +++ b/src/liblzma/common/block_decoder.c @@ -227,7 +227,7 @@ lzma_block_decoder(lzma_stream *strm, lzma_block *options) lzma_next_strm_init(lzma_block_decoder_init, strm, options); strm->internal->supported_actions[LZMA_RUN] = true; - strm->internal->supported_actions[LZMA_SYNC_FLUSH] = true; + strm->internal->supported_actions[LZMA_FINISH] = true; return LZMA_OK; } |