changeset 15300:c5e272b47618

[gaim-migrate @ 18090] Don't free plugin->path since we haven't allocated a copy and we actually need it. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 08 Jan 2007 17:19:34 +0000
parents ce8eee2abefc
children a2a0c0a13a75
files libgaim/plugin.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libgaim/plugin.c	Mon Jan 08 15:18:25 2007 +0000
+++ b/libgaim/plugin.c	Mon Jan 08 17:19:34 2007 +0000
@@ -1204,7 +1204,6 @@
 {
 #ifdef GAIM_PLUGINS
 	GList *pl;
-	GList *f;
 	GList *files = NULL;
 	GaimPlugin *p;
 
@@ -1218,7 +1217,6 @@
 	}
 
 	gaim_prefs_set_string_list(key, files);
-	g_list_foreach(files, (GFunc)g_free, NULL);
 	g_list_free(files);
 #endif
 }