Changes in protocols/jabber/conference.c [5ebff60:4543b6bd]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
r5ebff60 r4543b6bd 359 359 360 360 if (subject && chat) { 361 s = bud? strchr(bud->ext_jid, '/') : NULL;361 s = (bud && bud->ext_jid) ? strchr(bud->ext_jid, '/') : NULL; 362 362 if (s) { 363 363 *s = 0; … … 419 419 } 420 420 if (body && body->text_len > 0) { 421 s = strchr(bud->ext_jid, '/');421 s = (bud->ext_jid) ? strchr(bud->ext_jid, '/') : NULL; 422 422 if (s) { 423 423 *s = 0;
Note: See TracChangeset
for help on using the changeset viewer.