diff src/conversation.c @ 11606:243dd81341a7

[gaim-migrate @ 13877] Fix 2 things with notify.c, one was causing warnings about signal instances, and the other a crash only sometimes on closing a tab. Also randomly removed redundent if !NULL free() in conversation.c committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Tue, 04 Oct 2005 02:48:25 +0000
parents 24274a79d6b0
children 38bbb0f15453
line wrap: on
line diff
--- a/src/conversation.c	Tue Oct 04 02:01:07 2005 +0000
+++ b/src/conversation.c	Tue Oct 04 02:48:25 2005 +0000
@@ -437,8 +437,8 @@
 	gaim_signal_emit(gaim_conversations_get_handle(),
 					 "deleting-conversation", conv);
 
-	if (conv->name  != NULL) g_free(conv->name);
-	if (conv->title != NULL) g_free(conv->title);
+	g_free(conv->name);
+	g_free(conv->title);
 
 	conv->name = NULL;
 	conv->title = NULL;