ObjFW  Diff

Differences From Artifact [ff6017ec5d]:

To Artifact [69b3d14f45]:


72
73
74
75
76
77
78
79
80
81
82


83
	}

	return [super init];
}

- (void)dealloc
{
	dlclose(handle);

	[super dealloc];
}


@end







|


|
>
>

72
73
74
75
76
77
78
79
80
81
82
83
84
85
	}

	return [super init];
}

- (void)dealloc
{
	of_plugin_handle_t h = handle;

	[super dealloc];

	dlclose(h);
}
@end