bugfix #53
This commit is contained in:
parent
c6bde27a40
commit
61d9034ec5
@ -34,6 +34,10 @@ static int bz2_read(const struct bspatch_stream* stream, void* buffer, int lengt
|
|||||||
int bz2err;
|
int bz2err;
|
||||||
bz_stream* zip;
|
bz_stream* zip;
|
||||||
|
|
||||||
|
if (length == 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
zip = (bz_stream*)stream->opaque;
|
zip = (bz_stream*)stream->opaque;
|
||||||
zip->next_out = (char*)buffer;
|
zip->next_out = (char*)buffer;
|
||||||
zip->avail_out = length;
|
zip->avail_out = length;
|
||||||
|
Loading…
Reference in New Issue
Block a user