@@ -1264,7 +1264,6 @@ void *_realloc_array(void *ptr, unsigned int size, unsigned long num)
{
if(num>=MALLOC_MAX/size)
returnNULL;
/* No realloc should need this, but just in case... */
if(!ptr)
returnmalloc(size*num);
returnrealloc(ptr,size*num);
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.