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
Specifically the condition i === 1 looks wrong. j is used in this loop. i is used in an outer loop and won't change in this loop.
This wrong condition will prevent it from correctiy storing CRC information and make the resulting file incompatible with commonly-used decompression tools.
The text was updated successfully, but these errors were encountered:
This part looks wrong:
zlib.js/zip.js at develop · imaya/zlib.js · GitHub
Specifically the condition
i === 1
looks wrong.j
is used in this loop.i
is used in an outer loop and won't change in this loop.This wrong condition will prevent it from correctiy storing CRC information and make the resulting file incompatible with commonly-used decompression tools.
The text was updated successfully, but these errors were encountered: