From 7cc64927bd223ed0a0197cf3285dbc85691fd32b Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 5 Feb 2020 22:15:08 -0500 Subject: Handle empty messages on privmsg, notice, action --- command.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'command.c') diff --git a/command.c b/command.c index 8471214..2a3df9b 100644 --- a/command.c +++ b/command.c @@ -27,6 +27,7 @@ static void commandQuote(size_t id, char *params) { } static void commandPrivmsg(size_t id, char *params) { + if (!params || !params[0]) return; ircFormat("PRIVMSG %s :%s\r\n", idNames[id], params); struct Message msg = { .nick = self.nick, @@ -39,6 +40,7 @@ static void commandPrivmsg(size_t id, char *params) { } static void commandNotice(size_t id, char *params) { + if (!params || !params[0]) return; ircFormat("NOTICE %s :%s\r\n", idNames[id], params); struct Message msg = { .nick = self.nick, @@ -52,7 +54,7 @@ static void commandNotice(size_t id, char *params) { static void commandMe(size_t id, char *params) { char buf[512]; - snprintf(buf, sizeof(buf), "\1ACTION %s\1", params); + snprintf(buf, sizeof(buf), "\1ACTION %s\1", (params ? params : "")); commandPrivmsg(id, buf); } -- cgit 1.4.1