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