aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/jabber
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-05-08 15:58:32 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-05-08 15:58:32 +0100
commite68565706f0c2ea710e7ea83cd5a69e538eb061c (patch)
tree7211cc8ab2a157ef1134204c119311bc177f7d0f /protocols/jabber
parenteaaa9862451175392d6df48c4795b188518bed4b (diff)
Fixed buggy jabber_chat_by_jid() after GSList change.
Diffstat (limited to 'protocols/jabber')
-rw-r--r--protocols/jabber/conference.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/conference.c b/protocols/jabber/conference.c
index 17108428..0d0e3318 100644
--- a/protocols/jabber/conference.c
+++ b/protocols/jabber/conference.c
@@ -104,7 +104,7 @@ struct groupchat *jabber_chat_by_jid( struct im_connection *ic, const char *name
}
g_free( normalized );
- return ret;
+ return l && ret;
}
void jabber_chat_free( struct groupchat *c )