diff options
Diffstat (limited to 'src/core/util.c')
-rw-r--r-- | src/core/util.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/util.c b/src/core/util.c index a30707a7..7b5f0803 100644 --- a/src/core/util.c +++ b/src/core/util.c @@ -207,10 +207,7 @@ utf8_fputs (const char *str, void meta_free_gslist_and_elements (GSList *list_to_deep_free) { - g_slist_foreach (list_to_deep_free, - (void (*)(gpointer,gpointer))&g_free, /* ew, for ugly */ - NULL); - g_slist_free (list_to_deep_free); + g_slist_free_full (list_to_deep_free, g_free); } #ifdef WITH_VERBOSE_MODE |