Add SIZE_MAX overflow check

This commit is contained in:
ache 2010-03-09 21:06:01 +00:00
parent c5fa503cec
commit 0cc78f7ab0

View File

@ -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)