Use *array() allocation functions where appropriate
This prevents overflow from multiplication. Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
committed by
Serge Hallyn
parent
727275a027
commit
191f04f7dc
@ -117,7 +117,7 @@ void endsgent (void)
|
||||
size_t len = strlen (string) + 1;
|
||||
|
||||
if (len > sgrbuflen) {
|
||||
char *buf = (char *) realloc (sgrbuf, sizeof (char) * len);
|
||||
char *buf = (char *) reallocarray (sgrbuf, len, sizeof (char));
|
||||
if (NULL == buf) {
|
||||
return NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user