changeset 17100: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 bee4ea11e299
children 7cdc1d7fad55
files libpurple/plugins/joinpart.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);
 }