From aaf9e1e345ab3e3cad9ee6375f53c0624372ef9b Mon Sep 17 00:00:00 2001 From: QC Date: Tue, 30 Jun 2015 21:18:45 +0200 Subject: [PATCH] Free in right order --- source/dialogs/combi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dialogs/combi.c b/source/dialogs/combi.c index 326cfc4e..476732f6 100644 --- a/source/dialogs/combi.c +++ b/source/dialogs/combi.c @@ -145,8 +145,8 @@ static void combi_mode_destroy ( Switcher *sw ) pd->switchers[i]->destroy ( pd->switchers[i] ); } g_free ( pd->switchers ); - g_free ( pd ); g_free ( pd->cache ); + g_free ( pd ); sw->private_data = NULL; } }