ObjFW  Diff

Differences From Artifact [b318936bd6]:

To Artifact [0c45c3aa04]:


51
52
53
54
55
56
57
58
59
60
61
62
63
64
		@throw [OFInitializationFailedException newWithClass: self];
	}

	plugin->handle = handle;
	return plugin;
}

- free
{
	dlclose(handle);

	return [super free];
}
@end







|



|


51
52
53
54
55
56
57
58
59
60
61
62
63
64
		@throw [OFInitializationFailedException newWithClass: self];
	}

	plugin->handle = handle;
	return plugin;
}

- (void)dealloc
{
	dlclose(handle);

	[super dealloc];
}
@end