From e5d2b428b86f3a09bbd035332698123971545d99 Mon Sep 17 00:00:00 2001 From: rbuj Date: Thu, 12 Sep 2019 11:21:56 +0200 Subject: Use g_list_free_full and g_slist_free_full void g_list_free_full (GList *list, GDestroyNotify free_func); void g_slist_free_full (GList *list, GDestroyNotify free_func); Convenience methods, which free all the memory used by a list, and calls free_func on every element's data. --- src/fr-process.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/fr-process.c') diff --git a/src/fr-process.c b/src/fr-process.c index a5621a9..d82bacd 100644 --- a/src/fr-process.c +++ b/src/fr-process.c @@ -93,8 +93,7 @@ fr_command_info_free (FrCommandInfo *info) return; if (info->args != NULL) { - g_list_foreach (info->args, (GFunc) g_free, NULL); - g_list_free (info->args); + g_list_free_full (info->args, g_free); info->args = NULL; } @@ -173,8 +172,7 @@ fr_channel_data_reset (FrChannelData *channel) fr_channel_data_close_source (channel); if (channel->raw != NULL) { - g_list_foreach (channel->raw, (GFunc) g_free, NULL); - g_list_free (channel->raw); + g_list_free_full (channel->raw, g_free); channel->raw = NULL; } } -- cgit v1.2.1