comparison src/gtkimhtml.c @ 7384:dc573236dc8b

[gaim-migrate @ 7979] SimGuy seems to think this could be a problem committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 30 Oct 2003 21:19:27 +0000
parents 2ec21bff351b
children 414c701ef1ff
comparison
equal deleted inserted replaced
7383:f1fe68ef00c7 7384:dc573236dc8b
112 112
113 while (list) { 113 while (list) {
114 GtkSmileyTree *t = list->data; 114 GtkSmileyTree *t = list->data;
115 gint i; 115 gint i;
116 list = g_slist_remove(list, t); 116 list = g_slist_remove(list, t);
117 if (t->values) { 117 if (t && t->values) {
118 for (i = 0; i < t->values->len; i++) 118 for (i = 0; i < t->values->len; i++)
119 list = g_slist_append (list, t->children [i]); 119 list = g_slist_append (list, t->children [i]);
120 g_string_free (t->values, TRUE); 120 g_string_free (t->values, TRUE);
121 g_free (t->children); 121 g_free (t->children);
122 } 122 }