Mercurial > pidgin
comparison src/plugin.c @ 13954:3cd388613624
[gaim-migrate @ 16502]
Extremely minor memleak fix in the tcl loader plugin
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 17 Jul 2006 04:33:32 +0000 |
| parents | 3c395481f10c |
| children | b43aec5fa9eb |
comparison
equal
deleted
inserted
replaced
| 13953:8b2306c64efa | 13954:3cd388613624 |
|---|---|
| 841 if (loader_info->destroy != NULL) | 841 if (loader_info->destroy != NULL) |
| 842 loader_info->destroy(plugin); | 842 loader_info->destroy(plugin); |
| 843 } | 843 } |
| 844 } | 844 } |
| 845 | 845 |
| 846 if (plugin->path != NULL) g_free(plugin->path); | 846 g_free(plugin->path); |
| 847 if (plugin->error != NULL) g_free(plugin->error); | 847 g_free(plugin->error); |
| 848 | 848 |
| 849 GAIM_DBUS_UNREGISTER_POINTER(plugin); | 849 GAIM_DBUS_UNREGISTER_POINTER(plugin); |
| 850 | 850 |
| 851 g_free(plugin); | 851 g_free(plugin); |
| 852 #endif /* !GAIM_PLUGINS */ | 852 #endif /* !GAIM_PLUGINS */ |
