comparison src/aim.c @ 997:56cff2fba28c

[gaim-migrate @ 1007] bleh committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 15 Oct 2000 02:00:05 +0000
parents fc1ca0d9c878
children 91b7377e7b45
comparison
equal deleted inserted replaced
996:388ac74f4212 997:56cff2fba28c
96 gaim_plugin_remove = dlsym(p->handle, "gaim_plugin_remove"); 96 gaim_plugin_remove = dlsym(p->handle, "gaim_plugin_remove");
97 if ((error = (char *)dlerror()) == NULL) 97 if ((error = (char *)dlerror()) == NULL)
98 (*gaim_plugin_remove)(); 98 (*gaim_plugin_remove)();
99 /* we don't need to worry about removing callbacks since 99 /* we don't need to worry about removing callbacks since
100 * there won't be any more chance to call them back :) */ 100 * there won't be any more chance to call them back :) */
101 dlclose(p->handle);
102 g_free(p->filename); /* why do i bother? */ 101 g_free(p->filename); /* why do i bother? */
103 g_free(p); 102 g_free(p);
104 c = c->next; 103 c = c->next;
105 } 104 }
106 #endif /* GAIM_PLUGINS */ 105 #endif /* GAIM_PLUGINS */