summaryrefslogtreecommitdiffstats
path: root/encoder.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 09:30:45 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 09:30:45 +0000
commit4a9d4aa2993742892cbc608b9df295e7c43a9b89 (patch)
treee6127869ff2cf3fa12b493926c84c4aec34a626e /encoder.h
parentAdding upstream version 1.12. (diff)
downloadlzip-4a9d4aa2993742892cbc608b9df295e7c43a9b89.tar.xz
lzip-4a9d4aa2993742892cbc608b9df295e7c43a9b89.zip
Adding upstream version 1.13~rc1.upstream/1.13_rc1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'encoder.h')
-rw-r--r--encoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/encoder.h b/encoder.h
index 314bdcc..86c23c2 100644
--- a/encoder.h
+++ b/encoder.h
@@ -173,7 +173,7 @@ public:
Matchfinder( const int dict_size, const int len_limit, const int ifd );
~Matchfinder()
- { delete[] prev_pos_tree; delete[] prev_positions; std::free( buffer ); }
+ { delete[] prev_pos_tree; std::free( buffer ); delete[] prev_positions; }
uint8_t operator[]( const int i ) const throw() { return buffer[pos+i]; }
int available_bytes() const throw() { return stream_pos - pos; }