free null ptr do nothing

This commit is contained in:
starnakin 2024-07-31 12:30:33 +02:00
parent 36cec79e81
commit 6738b0f5bb

View File

@ -117,6 +117,9 @@ void ft_free(void *ptr)
chunk_t chunk; chunk_t chunk;
size_t i; size_t i;
if (ptr == NULL)
return;
for (i = TINY; i <= LARGE + 1; i++) for (i = TINY; i <= LARGE + 1; i++)
{ {
if (i > LARGE) if (i > LARGE)