mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-23 23:59:16 +02:00
Remove useless NULL check before g_free()
This commit is contained in:
parent
f7f0c86a9c
commit
d488d75909
@ -25,7 +25,6 @@ static inline void
|
|||||||
g_autoptr_cleanup_generic_gfree (void *p)
|
g_autoptr_cleanup_generic_gfree (void *p)
|
||||||
{
|
{
|
||||||
void **pp = (void**)p;
|
void **pp = (void**)p;
|
||||||
if (*pp)
|
|
||||||
g_free (*pp);
|
g_free (*pp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user