Remove useless NULL check before g_free()

This commit is contained in:
Xavier Claessens 2015-09-21 10:50:38 -04:00
parent f7f0c86a9c
commit d488d75909

View File

@ -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