Merge pull request #1573 from xenrox/fix-uninitialized

Initialize jid
This commit is contained in:
Michael Vetter
2021-07-02 08:38:26 +02:00
committed by GitHub

View File

@@ -3050,14 +3050,15 @@ cmd_blocked(ProfWin* window, const char* const command, gchar** args)
} }
if (strncmp(args[0], "report-", 7) == 0) { if (strncmp(args[0], "report-", 7) == 0) {
char *jid; char* jid = NULL;
char *msg = NULL; char* msg = NULL;
guint argn = g_strv_length(args); guint argn = g_strv_length(args);
if (argn >= 2) { if (argn >= 2) {
jid = args[1]; jid = args[1];
} else { } else {
cons_bad_cmd_usage(command); cons_bad_cmd_usage(command);
return TRUE;
} }
if (argn >= 3) { if (argn >= 3) {