From 4f67285651ec8b03c9f88e5b5bc3078f584d5d20 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 28 Jan 2004 20:39:46 +0000 Subject: Don't leak string. (#132482, Christian Persch) Wed Jan 28 21:40:47 2004 Matthias Clasen * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func): Don't leak string. (#132482, Christian Persch) --- gtk/gtkentrycompletion.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gtk') diff --git a/gtk/gtkentrycompletion.c b/gtk/gtkentrycompletion.c index 13884a8c7b..da969f8f07 100644 --- a/gtk/gtkentrycompletion.c +++ b/gtk/gtkentrycompletion.c @@ -688,6 +688,8 @@ gtk_entry_completion_action_data_func (GtkTreeViewColumn *tree_column, "markup", NULL, "text", string, NULL); + + g_free (string); } static void -- cgit v1.2.1