diff options
author | Sven Moritz Hallberg <pesco@khjk.org> | 2010-07-11 19:21:21 +0200 |
---|---|---|
committer | Sven Moritz Hallberg <pesco@khjk.org> | 2010-07-11 19:21:21 +0200 |
commit | eb6df6a280c458546ebc57126e63a828674b4cd8 (patch) | |
tree | b8eead746fe97b7fb4bcf9a518c452ad87caed65 /protocols/jabber/message.c | |
parent | 37598495deeb42e1cd216a0a4ba8068e4a6da453 (diff) | |
parent | 00540d40be63b4db537a661d1a17c49a1790f79c (diff) |
merge with upstraem bitlbee 1.2.8
Diffstat (limited to 'protocols/jabber/message.c')
-rw-r--r-- | protocols/jabber/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/message.c b/protocols/jabber/message.c index e8161029..fa915bd8 100644 --- a/protocols/jabber/message.c +++ b/protocols/jabber/message.c @@ -54,7 +54,7 @@ xt_status jabber_pkt_message( struct xt_node *node, gpointer data ) char *ns = xt_find_attr( c, "xmlns" ), *room; struct xt_node *inv, *reason; - if( strcmp( ns, XMLNS_MUC_USER ) == 0 && + if( ns && strcmp( ns, XMLNS_MUC_USER ) == 0 && ( inv = xt_find_node( c->children, "invite" ) ) ) { room = from; |