Skip to content
Snippets Groups Projects
Commit e6a118ee authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

moduzlib: Update to uzlib v1.2.

Actually manage size of the output buffer.
parent 2f8c409a
No related branches found
No related tags found
No related merge requests found
......@@ -337,6 +337,7 @@ static int tinf_inflate_block_data(TINF_DATA *d, TINF_TREE *lt, TINF_TREE *dt)
}
*d->dest++ = sym;
d->destRemaining--;
} else {
......@@ -366,6 +367,7 @@ static int tinf_inflate_block_data(TINF_DATA *d, TINF_TREE *lt, TINF_TREE *dt)
}
d->dest += length;
d->destRemaining -= length;
}
}
}
......@@ -397,6 +399,7 @@ static int tinf_inflate_uncompressed_block(TINF_DATA *d)
/* copy block */
for (i = length; i; --i) *d->dest++ = *d->source++;
d->destRemaining -= length;
/* make sure we start next block on a byte boundary */
d->bitcount = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment