fix bug in realloc implementation

This commit is contained in:
Wolfgang Thaller 2014-09-13 00:20:07 +02:00
parent cdee6c52cf
commit ebdaf6b959

View File

@ -70,6 +70,8 @@ void *_realloc_r(struct _reent *reent_ptr, void *ptr, size_t sz)
return NULL;
}
}
else
return ptr;
}
}