Add SIZE_MAX overflow check
This commit is contained in:
parent
c5fa503cec
commit
0cc78f7ab0
@ -196,6 +196,8 @@ convert(const char *str)
|
||||
|
||||
if ((n = mbstowcs(NULL, str, 0)) == (size_t)-1)
|
||||
return (NULL);
|
||||
if (SIZE_MAX / sizeof(*buf) < n + 1)
|
||||
errx(1, "conversion buffer length overflow");
|
||||
if ((buf = malloc((n + 1) * sizeof(*buf))) == NULL)
|
||||
err(1, "malloc");
|
||||
if (mbstowcs(buf, str, n + 1) != n)
|
||||
|
Loading…
Reference in New Issue
Block a user