From 5f6854bcaef5ceca6dce593e1b6467f127e76ade Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Wed, 12 Nov 2008 09:01:02 +0000 Subject: [PATCH] * Set a variable to NULL to avoid a double g_free pmo-trunk-r6271 --- src/modest-ui-actions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index e6ea966..9e9827f 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -3733,6 +3733,7 @@ modest_ui_actions_on_password_requested (TnyAccountStore *account_store, } } else { g_free (*username); + *username = NULL; /* Show error */ modest_platform_information_banner (GTK_WIDGET (dialog), NULL, _("mcen_ib_username_pw_incorrect")); -- 1.7.9.5