diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-08 15:58:32 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-08 15:58:32 +0100 |
commit | e68565706f0c2ea710e7ea83cd5a69e538eb061c (patch) | |
tree | 7211cc8ab2a157ef1134204c119311bc177f7d0f /protocols/jabber/conference.c | |
parent | eaaa9862451175392d6df48c4795b188518bed4b (diff) |
Fixed buggy jabber_chat_by_jid() after GSList change.
Diffstat (limited to 'protocols/jabber/conference.c')
-rw-r--r-- | protocols/jabber/conference.c | 2 |
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 ) |