diff options
author | June McEnroe <june@causal.agency> | 2018-08-07 00:12:08 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-07 00:12:08 -0400 |
commit | f1b1ffe79fb17e4228d9fb0a10aaba299b15548b (patch) | |
tree | 4ca5a4bf44a77e689055de9f19ac20df5db3bdfe | |
parent | Add reverse and reset IRC formatting codes (diff) | |
download | catgirl-f1b1ffe79fb17e4228d9fb0a10aaba299b15548b.tar.gz catgirl-f1b1ffe79fb17e4228d9fb0a10aaba299b15548b.zip |
Make safe filling the who buffer
Diffstat (limited to '')
-rw-r--r-- | handle.c | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/handle.c b/handle.c index c602c23..7fba7f2 100644 --- a/handle.c +++ b/handle.c @@ -152,8 +152,10 @@ static void handle366(char *prefix, char *params) { ircFmt("WHO %s\r\n", chan); } -static char whoBuf[4096]; -static size_t whoLen; +static struct { + char buf[4096]; + size_t len; +} who; static void handle352(char *prefix, char *params) { (void)prefix; @@ -163,21 +165,23 @@ static void handle352(char *prefix, char *params) { shift(¶ms); shift(¶ms); char *nick = shift(¶ms); - whoLen += snprintf( - &whoBuf[whoLen], sizeof(whoBuf) - whoLen, + size_t cap = sizeof(who.buf) - who.len; + int len = snprintf( + &who.buf[who.len], cap, "%s\3%d%s\3", - (whoLen ? ", " : ""), color(user), nick + (who.len ? ", " : ""), color(user), nick ); + if ((size_t)len < cap) who.len += len; } static void handle315(char *prefix, char *params) { (void)prefix; shift(¶ms); char *chan = shift(¶ms); - whoLen = 0; + who.len = 0; uiFmt( L"In \3%d%s\3 are %s", - color(chan), chan, whoBuf + color(chan), chan, who.buf ); } |