@@ -107,11 +107,11 @@ of_dlclose(handle); @throw [OFInitializationFailedException exceptionWithClass: self]; } - plugin->_handle = handle; + plugin->_pluginHandle = handle; return plugin; } - (instancetype)init { @@ -129,12 +129,12 @@ return [super init]; } - (void)dealloc { - of_plugin_handle_t h = _handle; + of_plugin_handle_t h = _pluginHandle; [super dealloc]; of_dlclose(h); } @end