summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--gtk/gtkselection.c2
3 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index afa512a0f6..3ade2ece23 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2005-09-28 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkselection.c (_gtk_selection_request): Free mult_atoms
+ here. (#317039, Paolo Borelli)
+
* gtk/gtktexttag.h:
* gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
to make this function work as boxed copy function. (#317455,
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index afa512a0f6..3ade2ece23 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,8 @@
2005-09-28 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkselection.c (_gtk_selection_request): Free mult_atoms
+ here. (#317039, Paolo Borelli)
+
* gtk/gtktexttag.h:
* gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
to make this function work as boxed copy function. (#317455,
diff --git a/gtk/gtkselection.c b/gtk/gtkselection.c
index 139a4567a9..d6fa64c2fa 100644
--- a/gtk/gtkselection.c
+++ b/gtk/gtkselection.c
@@ -1953,6 +1953,8 @@ _gtk_selection_request (GtkWidget *widget,
info->conversions[i].property = gdk_x11_xatom_to_atom_for_display (display,
((glong *)mult_atoms)[2*i + 1]);
}
+
+ g_free (mult_atoms);
}
else
#endif