# HG changeset patch # User Christian Hammond # Date 1044994203 0 # Node ID 57e939c91f721cb9e2e45df8c7a4e92aea6c16f8 # Parent 82a4a5cd9a61cca6a5c50e3805260bf77d73e691 [gaim-migrate @ 4855] Er, that's what I meant. committer: Tailor Script diff -r 82a4a5cd9a61 -r 57e939c91f72 src/conversation.c --- a/src/conversation.c Tue Feb 11 19:15:29 2003 +0000 +++ b/src/conversation.c Tue Feb 11 20:10:03 2003 +0000 @@ -982,12 +982,14 @@ conversations = g_list_remove(conversations, conv); if (conv->type == GAIM_CONV_IM) { + GSList *snode; + gaim_im_stop_typing_timeout(conv->u.im); gaim_im_stop_type_again_timeout(conv->u.im); - for (node = conv->u.im->images; node != NULL; node = node->next) { - if (node->data != NULL) - g_free(node->data); + for (snode = conv->u.im->images; snode != NULL; snode = snode->next) { + if (snode->data != NULL) + g_free(snode->data); } g_slist_free(conv->u.im->images);