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
I've traced this to line 369 in unzip.c where uL != ZIP64ENDLOCHEADERMAGIC is true and as a consequence unz64local_SearchCentralDir64 returns 0, leading to UNZ_BADZIPFILE in unzOpenInternal.
/* read locator signature */
if (unz64local_getLong(pzlib_filefunc_def, filestream, &uL) != UNZ_OK)
return 0;
if (uL != ZIP64ENDLOCHEADERMAGIC)
return 0;
I can't tell if it's the zipping or the unzipping that's tripping up. I'm attaching the file (which unzips just fine in Finder, FWIW).
I've traced this to line 369 in
unzip.c
whereuL != ZIP64ENDLOCHEADERMAGIC
is true and as a consequenceunz64local_SearchCentralDir64
returns 0, leading toUNZ_BADZIPFILE
inunzOpenInternal
.I can't tell if it's the zipping or the unzipping that's tripping up. I'm attaching the file (which unzips just fine in Finder, FWIW).
All this is with Zip 2.1.2
prod-apple-swift-metrics-main-e6a00d36.zip
The text was updated successfully, but these errors were encountered: