aboutsummaryrefslogtreecommitdiff
path: root/engines/access/decompress.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2015-07-05 11:29:35 +0200
committerMartin Kiewitz2015-07-05 11:29:35 +0200
commit83f4565fe21e59afa3651413134a2ecfa613b84d (patch)
treec49cc4a83a0f4991e3dd244949fabffcad4f3aa4 /engines/access/decompress.cpp
parentf4ee8399b0127d61b278df904b21202a0dac5990 (diff)
downloadscummvm-rg350-83f4565fe21e59afa3651413134a2ecfa613b84d.tar.gz
scummvm-rg350-83f4565fe21e59afa3651413134a2ecfa613b84d.tar.bz2
scummvm-rg350-83f4565fe21e59afa3651413134a2ecfa613b84d.zip
ACCESS: fix valgrind errors in decompressor
Diffstat (limited to 'engines/access/decompress.cpp')
-rw-r--r--engines/access/decompress.cpp44
1 files changed, 33 insertions, 11 deletions
diff --git a/engines/access/decompress.cpp b/engines/access/decompress.cpp
index c5656afa51..3de376c193 100644
--- a/engines/access/decompress.cpp
+++ b/engines/access/decompress.cpp
@@ -46,7 +46,7 @@ void LzwDecompressor::decompress(byte *source, byte *dest) {
maxCodeValue = 512;
copyLength = 0;
- _bitPos = 0;
+ _sourceBitsLeft = 8;
while (1) {
@@ -97,17 +97,39 @@ uint16 LzwDecompressor::getCode() {
const byte bitMasks[9] = {
0x00, 0x01, 0x03, 0x07, 0x0F, 0x1F, 0x3F, 0x7F, 0x0FF
};
- uint16 bits, loCode, hiCode;
- loCode = (READ_LE_UINT16(_source) >> _bitPos) & 0xFF;
- _source++;
- bits = _codeLength - 8;
- hiCode = (READ_LE_UINT16(_source) >> _bitPos) & bitMasks[bits];
- _bitPos += bits;
- if (_bitPos > 8) {
- _source++;
- _bitPos -= 8;
+
+ byte resultBitsLeft = _codeLength;
+ byte resultBitsPos = 0;
+ uint16 result = 0;
+ byte currentByte = *_source;
+ byte currentBits = 0;
+
+ // Get bits of current byte
+ while (resultBitsLeft) {
+ if (resultBitsLeft < _sourceBitsLeft) {
+ // we need less than we have left
+ currentBits = (currentByte >> (8 - _sourceBitsLeft)) & bitMasks[resultBitsLeft];
+ result |= (currentBits << resultBitsPos);
+ _sourceBitsLeft -= resultBitsLeft;
+ resultBitsLeft = 0;
+
+ } else {
+ // we need as much as we have left or more
+ resultBitsLeft -= _sourceBitsLeft;
+ currentBits = currentByte >> (8 - _sourceBitsLeft);
+ result |= (currentBits << resultBitsPos);
+ resultBitsPos += _sourceBitsLeft;
+
+ // Go to next byte
+ _source++;
+
+ _sourceBitsLeft = 8;
+ if (resultBitsLeft) {
+ currentByte = *_source;
+ }
+ }
}
- return (hiCode << 8) | loCode;
+ return result;
}
uint32 decompressDBE(byte *source, byte **dest) {