summaryrefslogtreecommitdiffstats
path: root/decoder.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2018-02-16 22:53:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2018-02-16 22:54:29 +0000
commit0f3df6bb7c38e4d4e59a115651e1abbaf95cc06b (patch)
treef0244acd530b0c862c80da072c61b19960b30275 /decoder.h
parentReleasing debian version 1.19-5. (diff)
downloadlzip-0f3df6bb7c38e4d4e59a115651e1abbaf95cc06b.tar.xz
lzip-0f3df6bb7c38e4d4e59a115651e1abbaf95cc06b.zip
Merging upstream version 1.20.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'decoder.h')
-rw-r--r--decoder.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/decoder.h b/decoder.h
index 68bf3a9..59f61d7 100644
--- a/decoder.h
+++ b/decoder.h
@@ -1,5 +1,5 @@
/* Lzip - LZMA lossless data compressor
- Copyright (C) 2008-2017 Antonio Diaz Diaz.
+ Copyright (C) 2008-2018 Antonio Diaz Diaz.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -222,11 +222,7 @@ class LZ_decoder
bool verify_trailer( const Pretty_print & pp ) const;
uint8_t peek_prev() const
- {
- if( pos > 0 ) return buffer[pos-1];
- if( pos_wrapped ) return buffer[dictionary_size-1];
- return 0; // prev_byte of first byte
- }
+ { return buffer[((pos > 0) ? pos : dictionary_size)-1]; }
uint8_t peek( const unsigned distance ) const
{
@@ -287,7 +283,8 @@ public:
crc_( 0xFFFFFFFFU ),
outfd( ofd ),
pos_wrapped( false )
- {}
+ // prev_byte of first byte; also for peek( 0 ) on corrupt file
+ { buffer[dictionary_size-1] = 0; }
~LZ_decoder() { delete[] buffer; }