diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/bitstream.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/bitstream.h b/common/bitstream.h index 34063dbfe1..61ec4abc76 100644 --- a/common/bitstream.h +++ b/common/bitstream.h @@ -176,6 +176,9 @@ public: /** Read a multi-bit value from the bit stream. */ uint32 getBits(uint8 n) { + if (n == 0) + return 0; + if (n > 32) error("BitStreamImpl::getBits(): Too many bits requested to be read"); @@ -225,6 +228,9 @@ public: /** Add a bit to the value x, making it an n-bit value. */ void addBit(uint32 &x, uint32 n) { + if (n >= 32) + error("BitStreamImpl::addBit(): Too many bits requested to be read"); + if (isMSB2LSB) x = (x << 1) | getBit(); else |