moduzlib: Update to uzlib v1.2.

Actually manage size of the output buffer.
stackless
Paul Sokolovsky 2015-01-26 22:01:21 +02:00
parent 2f8c409a4f
commit e6a118ee85
1 changed files with 3 additions and 0 deletions

View File

@ -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;