Commit 93fc1848 authored by Mike Iovine's avatar Mike Iovine
Browse files

Don't pad at end of blocks

parent 3b264b70
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -372,9 +372,9 @@ bool read_block(char *buf, FILE *out) {
while (chunk_val != 256);
/* Skip over filler at the end of the block */
while (_CUR_BIT % 8 != 0) {
_CUR_BIT += 1;
}
//while (_CUR_BIT % 8 != 0) {
// _CUR_BIT += 1;
//}
if (btype == DYNAMIC) {
destroy_huffman(hf);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment