Skip to content

Commit

Permalink
Merge pull request #51 from sezero/misc0
Browse files Browse the repository at this point in the history
bit_stream_reader.c (peek_bits): Remove memset.
  • Loading branch information
fragglet committed Aug 4, 2023
2 parents 18bbcc3 + eb5ff50 commit 091ee4a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/bit_stream_reader.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ static int peek_bits(BitStreamReader *reader,
unsigned int n)
{
uint8_t buf[4];
unsigned int fill_bytes;
size_t bytes, i;

if (n == 0) {
Expand All @@ -74,11 +73,10 @@ static int peek_bits(BitStreamReader *reader,

// Maximum number of bytes we can fill?

fill_bytes = (32 - reader->bits) / 8;
const unsigned int fill_bytes = (32 - reader->bits) / 8;

// Read from input and fill bit_buffer.

memset(buf, 0, sizeof(buf));
bytes = reader->callback(buf, fill_bytes,
reader->callback_data);

Expand Down

0 comments on commit 091ee4a

Please sign in to comment.