diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/command/command.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c index 2e31605d..d8b955a2 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -2673,10 +2673,15 @@ _cmd_join(gchar **args, struct cmd_help_t help) return TRUE; } + Jid *room_arg = jid_create(args[0]); + if (room_arg == NULL) { + cons_show_error("Specified room has incorrect format"); + return TRUE; + } + int num_args = g_strv_length(args); char *room = NULL; char *nick = NULL; - Jid *room_arg = jid_create(args[0]); GString *room_str = g_string_new(""); Jid *my_jid = jid_create(jabber_get_fulljid()); |