mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 16:36:14 +01:00
Merge branch 'no-free-check' into 'master'
Do not check for NULL when calling free() See merge request GNOME/glib!547
This commit is contained in:
commit
4e776d9167
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user