diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-01-28 20:39:46 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-01-28 20:39:46 +0000 |
commit | 4f67285651ec8b03c9f88e5b5bc3078f584d5d20 (patch) | |
tree | d3d2317791cd09ea686059469997b6cea8208026 /gtk | |
parent | bab85e9e8e728f4a2ba1d157aeb0a5d5f4b170ff (diff) | |
download | gtk+-4f67285651ec8b03c9f88e5b5bc3078f584d5d20.tar.gz |
Don't leak string. (#132482, Christian Persch)
Wed Jan 28 21:40:47 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func):
Don't leak string. (#132482, Christian Persch)
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkentrycompletion.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 |