comparison pidgin/gtkimhtml.c @ 23324: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 86bf0ce0d7ac
children 8c315f969600
comparison
equal deleted inserted replaced
23323:a61bb76597fc 23324:0d47aab4ca5c
5243 text_tag_data_destroy(tmp); 5243 text_tag_data_destroy(tmp);
5244 } 5244 }
5245 5245
5246 if (tmp == NULL) 5246 if (tmp == NULL)
5247 purple_debug_warning("gtkimhtml", "empty queue, more closing tags than open tags!\n"); 5247 purple_debug_warning("gtkimhtml", "empty queue, more closing tags than open tags!\n");
5248 else 5248 else {
5249 g_string_append(str, tmp->end); 5249 g_string_append(str, tmp->end);
5250 text_tag_data_destroy(tmp);
5251 }
5250 5252
5251 while ((tmp = g_queue_pop_head(r))) { 5253 while ((tmp = g_queue_pop_head(r))) {
5252 g_string_append(str, tmp->start); 5254 g_string_append(str, tmp->start);
5253 g_queue_push_tail(q, tmp); 5255 g_queue_push_tail(q, tmp);
5254 } 5256 }