diff libpurple/plugins/joinpart.c @ 17113:de2946d55a2d

We can't be sure that the conv still exists, so don't dereference it.
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 16 May 2007 03:18:33 +0000
parents 5205dd2bd035
children 0f4a562b38d1
line wrap: on
line diff
--- a/libpurple/plugins/joinpart.c	Tue May 15 21:50:44 2007 +0000
+++ b/libpurple/plugins/joinpart.c	Wed May 16 03:18:33 2007 +0000
@@ -156,7 +156,7 @@
 static gboolean check_expire_time(struct joinpart_key *key,
                                   time_t *last_said, time_t *limit)
 {
-	purple_debug_info("joinpart", "Removing key for %s/%s\n", key->conv->name, key->user);
+	purple_debug_info("joinpart", "Removing key for %s\n", key->user);
 	return (*last_said < *limit);
 }