From 8855870a081f7966275b085d7e38c21764ba2eae Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Tue, 18 Oct 2011 10:25:14 -0400 Subject: [PATCH] * #7231: fix double free when loading history Regression introduced by commit 315e915272c6df93ba2e9ddc29cf9dbf2e1c77a6 --- gnome/src/actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnome/src/actions.c b/gnome/src/actions.c index 02a5e45ed7..697efb4f58 100644 --- a/gnome/src/actions.c +++ b/gnome/src/actions.c @@ -1131,7 +1131,7 @@ void sflphone_fill_history(void) } } - g_free(*entries++); + entries++; } g_strfreev(entries_orig); -- GitLab