diff options
author | Peter Prohaska <pitrp@web.de> | 2020-11-12 00:16:21 +0300 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2022-12-19 18:13:58 +0300 |
commit | ce2062d9e29bf165ba8a70bfc92ff3ab08338d53 (patch) | |
tree | 9d6243e7adf8abd93ab4b8ce8fbc84233c242ef7 /html.c | |
parent | 4e4b30effb773e8cb0c9c23fd664a11bbe5b4076 (diff) |
html: fix handling of null byte
A return value of `len` or more means that the output was truncated.
Signed-off-by: Peter Prohaska <pitrp@web.de>
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ char *fmt(const char *format, ...) va_start(args, format); len = vsnprintf(buf[bufidx], sizeof(buf[bufidx]), format, args); va_end(args); - if (len > sizeof(buf[bufidx])) { + if (len >= sizeof(buf[bufidx])) { fprintf(stderr, "[html.c] string truncated: %s\n", format); exit(1); } |