Index: utils/ofzip/ZIPArchive.m ================================================================== --- utils/ofzip/ZIPArchive.m +++ utils/ofzip/ZIPArchive.m @@ -72,11 +72,11 @@ - initWithFile: (OFFile*)file { self = [super init]; @try { - _archive = [OFZIPArchive archiveWithSeekableStream: file]; + _archive = [[OFZIPArchive alloc] initWithSeekableStream: file]; } @catch (id e) { [self release]; @throw e; }