# HG changeset patch # User Ka-Hing Cheung # Date 1212962394 0 # Node ID 0d47aab4ca5c1fc811f35847dc9cc3a25b684cb6 # Parent a61bb76597fce859c3e578eda5599645996a6bc8 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) diff -r a61bb76597fc -r 0d47aab4ca5c pidgin/gtkimhtml.c --- 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);