Do not check for NULL when calling free()

The C standard guarantees that `free()` is `NULL`-safe.
This commit is contained in:
Emmanuele Bassi 2018-12-18 13:27:43 +00:00
parent 8aff74e213
commit 84d013ed46

View File

@ -170,8 +170,7 @@ g_realloc (gpointer mem,
G_STRLOC, n_bytes);
}
if (mem)
free (mem);
free (mem);
TRACE (GLIB_MEM_REALLOC((void*) NULL, (void*)mem, 0, 0));
@ -190,8 +189,7 @@ g_realloc (gpointer mem,
void
g_free (gpointer mem)
{
if (G_LIKELY (mem))
free (mem);
free (mem);
TRACE(GLIB_MEM_FREE((void*) mem));
}
@ -304,8 +302,7 @@ g_try_realloc (gpointer mem,
else
{
newmem = NULL;
if (mem)
free (mem);
free (mem);
}
TRACE (GLIB_MEM_REALLOC((void*) newmem, (void*)mem, (unsigned int) n_bytes, 1));