ObjFW  Diff

Differences From Artifact [a34749abe1]:

To Artifact [70abf75d98]:


291
292
293
294
295
296
297


298
299
300
301
302
303
304
305
306
307

- (void)close
{
	if (_fd != -1)
		close(_fd);

	_fd = -1;


}

- (void)dealloc
{
	if (_fd != -1)
		close(_fd);

	[super dealloc];
}
@end







>
>










291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309

- (void)close
{
	if (_fd != -1)
		close(_fd);

	_fd = -1;

	[super close];
}

- (void)dealloc
{
	if (_fd != -1)
		close(_fd);

	[super dealloc];
}
@end