aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/find_dlg.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-01-23 14:05:22 +0000
committerBill Meier <wmeier@newsguy.com>2008-01-23 14:05:22 +0000
commit6bb8b5f9b9e52acf4ff47fea6c08ad14d1381aa7 (patch)
tree6843ac27736c9e97eef22aacf8dc2428f998e718 /gtk/find_dlg.c
parent56ae79a3fd245eadc73990367c8c344a36f46191 (diff)
Fix minor memory leak
svn path=/trunk/; revision=24167
Diffstat (limited to 'gtk/find_dlg.c')
-rw-r--r--gtk/find_dlg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/find_dlg.c b/gtk/find_dlg.c
index 53eb2a759d..44e88a8378 100644
--- a/gtk/find_dlg.c
+++ b/gtk/find_dlg.c
@@ -298,6 +298,7 @@ find_frame_cb(GtkWidget *w _U_, gpointer d _U_)
glist = g_list_append(glist, "ASCII Unicode");
gtk_combo_set_popdown_strings(GTK_COMBO(combo_cb), glist);
+ g_list_free(glist);
/* You only get to choose from the options we offer */
gtk_entry_set_editable(GTK_ENTRY(GTK_COMBO(combo_cb)->entry), FALSE);
gtk_container_add(GTK_CONTAINER(string_opt_vb), combo_cb);