Commit db0f7613 authored by Wayne Davison's avatar Wayne Davison

Got rid of an incorrect comment.

parent 45d8bfe0
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment