From 322ae93a5e0b78b65831f9fd87fd456eb84d21a1 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Wed, 13 Sep 2000 02:46:14 +0000 Subject: Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead of segfaulting or handling errors the same way themselves. --- utility.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'utility.c') diff --git a/utility.c b/utility.c index 8827b4a..4defbfc 100644 --- a/utility.c +++ b/utility.c @@ -1290,7 +1290,7 @@ extern pid_t* findPidByName( char* pidName) * some new processes start up while we wait. The kernel will * just ignore any extras if we give it too many, and will trunc. * the list if we give it too few. */ - pid_array = (pid_t*) calloc( num_pids+10, sizeof(pid_t)); + pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t)); pid_array[0] = num_pids+10; /* Now grab the pid list */ @@ -1316,9 +1316,7 @@ extern pid_t* findPidByName( char* pidName) if ((strstr(info.command_line, pidName) != NULL) && (strlen(pidName) == strlen(info.command_line))) { - pidList=realloc( pidList, sizeof(pid_t) * (j+2)); - if (pidList==NULL) - fatalError(memory_exhausted); + pidList=xrealloc( pidList, sizeof(pid_t) * (j+2)); pidList[j++]=info.pid; } } @@ -1389,9 +1387,7 @@ extern pid_t* findPidByName( char* pidName) if ((strstr(p, pidName) != NULL) && (strlen(pidName) == strlen(p))) { - pidList=realloc( pidList, sizeof(pid_t) * (i+2)); - if (pidList==NULL) - fatalError(memory_exhausted); + pidList=xrealloc( pidList, sizeof(pid_t) * (i+2)); pidList[i++]=strtol(next->d_name, NULL, 0); } } @@ -1624,7 +1620,7 @@ extern char *get_line_from_file(FILE *file) break; /* grow the line buffer as necessary */ if (idx > linebufsz-2) - linebuf = realloc(linebuf, linebufsz += GROWBY); + linebuf = xrealloc(linebuf, linebufsz += GROWBY); linebuf[idx++] = (char)ch; if ((char)ch == '\n') break; -- cgit v1.1