ObjFW  Diff

Differences From Artifact [4d9fbe54f7]:

To Artifact [44e262af33]:


65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

- initWithStream: (OF_KINDOF(OFStream *))stream
	    mode: (OFString *)mode
{
	self = [super init];

	@try {
		_archive = [[OFZIPArchive alloc] initWithSeekableStream: stream
								   mode: mode];
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}







|
|







65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

- initWithStream: (OF_KINDOF(OFStream *))stream
	    mode: (OFString *)mode
{
	self = [super init];

	@try {
		_archive = [[OFZIPArchive alloc] initWithStream: stream
							   mode: mode];
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}