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
If files are added to a Zip archive using the mz_zip_writer_add_file function and the 4 GB limit is exceeded, the system does not automatically switch to Zip64. The resulting zip archive is then defective.
There is already a test in the mz_zip_writer_add_mem_ex_v2 function, but it only tests whether the 4 GB limit is exceeded by adding the header. Whether this limit is exceeded after the subsequent writing of the compressed data is no longer tested.
If files are added to a Zip archive using the
mz_zip_writer_add_file
function and the 4 GB limit is exceeded, the system does not automatically switch to Zip64. The resulting zip archive is then defective.There is already a test in the
mz_zip_writer_add_mem_ex_v2
function, but it only tests whether the 4 GB limit is exceeded by adding the header. Whether this limit is exceeded after the subsequent writing of the compressed data is no longer tested.I use code like this:
After
mz_zip_writer_finalize_archive
success is false, if archive gets larger than 4 GB and the zip archive is defective.The text was updated successfully, but these errors were encountered: