Got rid of an incorrect comment.

This commit is contained in:
Wayne Davison
2006-11-28 19:34:01 +00:00
parent 45d8bfe09e
commit db0f7613e1

1
util.c
View File

@@ -1264,7 +1264,6 @@ void *_realloc_array(void *ptr, unsigned int size, unsigned long num)
{
if (num >= MALLOC_MAX/size)
return NULL;
/* No realloc should need this, but just in case... */
if (!ptr)
return malloc(size * num);
return realloc(ptr, size * num);