diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:29:08 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:29:08 +0000 |
commit | ebfebbfb4b77fa42f84e07b6fe671c56cdd12a35 (patch) | |
tree | a55e5d8f3b0da9372f59932cbd3079309a55fecc /decompress.cc | |
parent | Adding upstream version 0.8. (diff) | |
download | plzip-ebfebbfb4b77fa42f84e07b6fe671c56cdd12a35.tar.xz plzip-ebfebbfb4b77fa42f84e07b6fe671c56cdd12a35.zip |
Adding upstream version 0.9.upstream/0.9
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | decompress.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decompress.cc b/decompress.cc index ef098ae..b440ecd 100644 --- a/decompress.cc +++ b/decompress.cc @@ -213,7 +213,7 @@ public: // Search forward from 'pos' for "LZIP" (Boyer-Moore algorithm) // Return pos of found string or 'pos+size' if not found. // -int find_magic( const uint8_t * const buffer, const int pos, const int size ) throw() +int find_magic( const uint8_t * const buffer, const int pos, const int size ) { const uint8_t table[256] = { 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, |