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 double checked and the zip file is exist and can be unzipped correctly by OSX archiver. Zip file is created by OSX archiver.
It always crash on: unzip.c > unzOpenInternal() line 577 unzGoToFirstFile((unzFile)s);
#00x00000001842bb7b8 in flockfile ()
#10x00000001842c7488 in fseek ()
#20x0000000100371ca0 in unzlocal_GetCurrentFileInfoInternal ()
#30x0000000100372d08 in unzGoToFirstFile ()
#40x000000010013a4bc in unzOpenInternal at /Users/Est/tiramisu/Pods/objective-zip/MiniZip/unzip.c:577
#50x000000010013a500 in unzOpen64 at /Users/Est/tiramisu/Pods/objective-zip/MiniZip/unzip.c:613
#60x0000000100130ff4 in -[OZZipFile initWithFileName:mode:legacy32BitMode:] at /Users/Est/tiramisu/Pods/objective-zip/Objective-Zip/OZZipFile.m:98
#70x0000000100130e20 in -[OZZipFile initWithFileName:mode:] at /Users/Est/tiramisu/Pods/objective-zip/Objective-Zip/OZZipFile.m:83
#80x0000000100131320 in -[OZZipFile initWithFileName:mode:error:] at /Users/Est/tiramisu/Pods/objective-zip/Objective-Zip/OZZipFile.m:134
Any idea why it crash when initializing the OZZipFile ? Thanks in advance.
The text was updated successfully, but these errors were encountered:
Several possibilities, but one thought: You're not specifying a full path; try [[NSBundle mainBundle] pathForResource:@"test" ofType:@"zip"] if this file is in your bundle, or the full path if you've downloaded it.
Hello, first of all thanks for the library.
When trying to unzip a zip file, it always crash for me on this step:
I double checked and the zip file is exist and can be unzipped correctly by OSX archiver. Zip file is created by OSX archiver.
It always crash on:
unzip.c > unzOpenInternal() line 577 unzGoToFirstFile((unzFile)s);
Any idea why it crash when initializing the
OZZipFile
? Thanks in advance.The text was updated successfully, but these errors were encountered: