diff src/server.c @ 1303:9c34f99af79e

[gaim-migrate @ 1313] if you ignore someone in chat, and they leave and return, they stay ignored. properly. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 19 Dec 2000 03:28:33 +0000
parents cb84b5c6d9ab
children f3303fc05572
line wrap: on
line diff
--- a/src/server.c	Tue Dec 19 03:08:06 2000 +0000
+++ b/src/server.c	Tue Dec 19 03:28:33 2000 +0000
@@ -662,6 +662,11 @@
 		g_free(tmp);
 	}
 
+	while (b->ignored) {
+		g_free(b->ignored->data);
+		b->ignored = g_list_remove(b->ignored, b->ignored->data);
+	}
+
 	g_free(b);
 }