diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:38:34 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:38:34 +0000 |
commit | 63af4e067acaebd2c134bcef91755c1be7eb3535 (patch) | |
tree | 7b36db2d56f6d6f129ba6a7d0467523fa21c10f0 /lzlib.cc | |
parent | Adding debian version 0.8-1. (diff) | |
download | lzlib-63af4e067acaebd2c134bcef91755c1be7eb3535.tar.xz lzlib-63af4e067acaebd2c134bcef91755c1be7eb3535.zip |
Merging upstream version 0.9.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzlib.cc')
-rw-r--r-- | lzlib.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -391,7 +391,7 @@ int LZ_decompress_read( struct LZ_Decoder * const decoder, } if( !d.lz_decoder ) { - if( d.ibuf->used_bytes() < 5 + (int)sizeof( File_header ) ) + if( d.ibuf->used_bytes() < 5 + (int)sizeof (File_header) ) { if( !d.ibuf->at_stream_end() || d.ibuf->finished() ) return 0; d.ibuf->purge(); // remove trailing garbage |