comparison src/connection.c @ 9944:e4a27c9aec4c

[gaim-migrate @ 10838] with much rejoicing, and massive thanks to the efforts of Christian, and all who have helped him, I present to you the incomplete status rewrite! committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 03 Sep 2004 21:35:52 +0000
parents e389922bdea7
children eaec201b2688
comparison
equal deleted inserted replaced
9943:f8e395a054e2 9944:e4a27c9aec4c
77 gaim_account_set_connection(account, NULL); 77 gaim_account_set_connection(account, NULL);
78 78
79 if (gc->display_name != NULL) 79 if (gc->display_name != NULL)
80 g_free(gc->display_name); 80 g_free(gc->display_name);
81 81
82 if (gc->away != NULL)
83 g_free(gc->away);
84
85 if (gc->away_state != NULL)
86 g_free(gc->away_state);
87
88 if (gc->disconnect_timeout) 82 if (gc->disconnect_timeout)
89 gaim_timeout_remove(gc->disconnect_timeout); 83 gaim_timeout_remove(gc->disconnect_timeout);
90 84
91 g_free(gc); 85 g_free(gc);
92 } 86 }