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
In fe6330e, @jpcha2 added an early exit to tinfl_decompress. Unfortunately, this broke tinfl_decompress_mem_to_heap:
tinfl_decompress
tinfl_decompress_mem_to_heap
NULL
TINFL_STATUS_BAD_PARAM
If you run the miniz_tester app before/after the change, you should be able to see it fail in simple_test1.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In fe6330e, @jpcha2 added an early exit to
tinfl_decompress
. Unfortunately, this broketinfl_decompress_mem_to_heap
:tinfl_decompress_mem_to_heap
is first called, the output buffer is not yet allocated (NULL
)tinfl_decompress
receives this value and now exits early with error codeTINFL_STATUS_BAD_PARAM
tinfl_decompress_mem_to_heap
to returnNULL
as well, without any decompression having taken placeIf you run the miniz_tester app before/after the change, you should be able to see it fail in simple_test1.
The text was updated successfully, but these errors were encountered: