Check that malloc() succeeds in makelist.

Submitted by:	Roman Divacky (who did a very complete review of both
				make_index.c and phttpget.c)
This commit is contained in:
Colin Percival 2005-08-09 09:49:01 +00:00
parent 22aec2a315
commit 4c3cffeb64
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148885

View File

@ -116,6 +116,8 @@ makelist(char * str, size_t * n)
/* Allocate and fill an array */
d = malloc(*n * sizeof(DEP));
if (d == NULL)
err(1, "malloc(DEP)");
for (i = 0; i < *n; i++) {
d[i].name = strdup2(strsep(&str, " "));