simplify pic_default_alloc impl
This commit is contained in:
parent
c573f2c56e
commit
c139bb0f08
|
@ -83,17 +83,11 @@ pic_heap_close(pic_state *pic, struct pic_heap *heap)
|
||||||
void *
|
void *
|
||||||
pic_default_allocf(void PIC_UNUSED(*userdata), void *ptr, size_t size)
|
pic_default_allocf(void PIC_UNUSED(*userdata), void *ptr, size_t size)
|
||||||
{
|
{
|
||||||
if (size == 0) {
|
if (size != 0) {
|
||||||
if (ptr) {
|
|
||||||
free(ptr);
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
if (ptr) {
|
|
||||||
return realloc(ptr, size);
|
return realloc(ptr, size);
|
||||||
} else {
|
|
||||||
return malloc(size);
|
|
||||||
}
|
}
|
||||||
|
free(ptr);
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue