You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
A memory corruption bug was identified in zlib's inflate() function where it performs an unsafe memcpy operation with overlapping memory regions. The issue manifests when decompressing data using the inflate() function.
Technical Details:
AddressSanitizer detected a memcpy-param-overlap error where the source and destination buffers overlap by 5 bytes. This indicates that inflate() is attempting to perform an in-place buffer copy without properly handling overlapping regions.
The text was updated successfully, but these errors were encountered:
Description:
A memory corruption bug was identified in zlib's inflate() function where it performs an unsafe memcpy operation with overlapping memory regions. The issue manifests when decompressing data using the inflate() function.
Steps to Reproduce:
Test_zlib_1.tar.gz
Technical Details:
AddressSanitizer detected a memcpy-param-overlap error where the source and destination buffers overlap by 5 bytes. This indicates that inflate() is attempting to perform an in-place buffer copy without properly handling overlapping regions.
The text was updated successfully, but these errors were encountered: