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/alone_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 '')
-rw-r--r-- | src/liblzma/common/alone_decoder.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/liblzma/common/alone_decoder.c b/src/liblzma/common/alone_decoder.c index 006740f4..4c76ae71 100644 --- a/src/liblzma/common/alone_decoder.c +++ b/src/liblzma/common/alone_decoder.c @@ -213,7 +213,6 @@ lzma_alone_decoder(lzma_stream *strm, uint64_t memlimit) lzma_next_strm_init(lzma_alone_decoder_init, strm, memlimit); strm->internal->supported_actions[LZMA_RUN] = true; -// strm->internal->supported_actions[LZMA_SYNC_FLUSH] = true; FIXME strm->internal->supported_actions[LZMA_FINISH] = true; return LZMA_OK; |