changeset 23322:0d47aab4ca5c

Patch from Andrew Gaul that fixes a leak: ==13094== 190 (112 direct, 78 indirect) bytes in 6 blocks are definitely lost in loss record 111 of 290 ==13094== at 0x4A05854: calloc (vg_replace_malloc.c:397) ==13094== by 0x331303F849: g_malloc0 (in /lib64/libglib-2.0.so.0.1600.3) ==13094== by 0x47C5BE: text_tag_data_new (gtkimhtml.c:5121) ==13094== by 0x47C9CC: gtk_imhtml_get_markup_range (gtkimhtml.c:5198) ==13094== by 0x46EAEF: gtk_imhtml_clipboard_get (gtkimhtml.c:1007)
author Ka-Hing Cheung <khc@hxbc.us>
date Sun, 08 Jun 2008 21:59:54 +0000
parents a61bb76597fc
children 8c315f969600
files pidgin/gtkimhtml.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkimhtml.c	Sun Jun 08 21:54:56 2008 +0000
+++ b/pidgin/gtkimhtml.c	Sun Jun 08 21:59:54 2008 +0000
@@ -5245,8 +5245,10 @@
 
 				if (tmp == NULL)
 					purple_debug_warning("gtkimhtml", "empty queue, more closing tags than open tags!\n");
-				else
+				else {
 					g_string_append(str, tmp->end);
+					text_tag_data_destroy(tmp);
+				}
 
 				while ((tmp = g_queue_pop_head(r))) {
 					g_string_append(str, tmp->start);