We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// if (len > UINT16_MAX) // return UNZ_PARAMERROR;
s->pfile_in_zip_read->stream.next_out = (Bytef*)buf; s->pfile_in_zip_read->stream.avail_out = (uInt)len; if (s->pfile_in_zip_read->raw) { if (len > s->pfile_in_zip_read->rest_read_compressed + s->pfile_in_zip_read->stream.avail_in) s->pfile_in_zip_read->stream.avail_out = (uInt)s->pfile_in_zip_read->rest_read_compressed + s->pfile_in_zip_read->stream.avail_in; } else { if (len > s->pfile_in_zip_read->rest_read_uncompressed) s->pfile_in_zip_read->stream.avail_out = (uInt)s->pfile_in_zip_read->rest_read_uncompressed; }
The text was updated successfully, but these errors were encountered:
@nmoinvaz Any word on this?
Sorry, something went wrong.
I don't see the problem. I am also not developing the old branch any longer. I will accept pull requests on it though.
No branches or pull requests
// if (len > UINT16_MAX)
// return UNZ_PARAMERROR;
The text was updated successfully, but these errors were encountered: