diff options
author | Owen Taylor <otaylor@redhat.com> | 1999-01-06 00:43:29 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1999-01-06 00:43:29 +0000 |
commit | 52601eae08db7abbebf5aea50727b887bc49b700 (patch) | |
tree | 1ab25a7adcfd1fa12c82aef54315458f319ab1ff /gtk | |
parent | 0a411980ef8a319e102f5d3cf9a3d351994c8f97 (diff) | |
download | gtk+-52601eae08db7abbebf5aea50727b887bc49b700.tar.gz |
Free memory allocated for target lists.
Tue Jan 5 11:31:55 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkselection.c (gtk_target_list_unref): Free
memory allocated for target lists.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkselection.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkselection.c b/gtk/gtkselection.c index c9ed219f1b..7c5aac55cd 100644 --- a/gtk/gtkselection.c +++ b/gtk/gtkselection.c @@ -184,6 +184,7 @@ gtk_target_list_unref (GtkTargetList *list) tmp_list = tmp_list->next; } + g_free (list); } } |