diff 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
line wrap: on
line diff
--- a/src/plugin.c	Mon Jul 17 04:30:50 2006 +0000
+++ b/src/plugin.c	Mon Jul 17 04:33:32 2006 +0000
@@ -843,8 +843,8 @@
 		}
 	}
 
-	if (plugin->path  != NULL) g_free(plugin->path);
-	if (plugin->error != NULL) g_free(plugin->error);
+	g_free(plugin->path);
+	g_free(plugin->error);
 
 	GAIM_DBUS_UNREGISTER_POINTER(plugin);