1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 20:36:38 +02:00

Fix bug in IRC parser when no argument is received after command, no callback was called, and message was silently ignored (bug #30640)

This commit is contained in:
Sebastien Helleu
2010-08-03 17:59:12 +02:00
parent 36d1aac9bd
commit b7dfda9d4d
2 changed files with 8 additions and 1 deletions
+5
View File
@@ -1315,6 +1315,11 @@ irc_server_parse_message (const char *message, char **nick, char **host,
}
}
}
else
{
if (command)
*command = strdup (pos);
}
}
}