From 970d9aea8da383297896b002c56ce13c47e52e29 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Mon, 11 Feb 2008 18:26:50 +0000 Subject: [PATCH] * src/modest-ui-actions.c: * Added a forgotten return in on_delete_folder_cb, for the case we cancelled the attempt to connect (fixes NB#79872). pmo-trunk-r4163 --- 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 ef49af6..811b72c 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -2957,6 +2957,7 @@ on_delete_folder_cb (gboolean canceled, if (!MODEST_IS_MAIN_WINDOW(parent_window) || canceled || (err!=NULL)) { g_object_unref (G_OBJECT (info->folder)); g_free (info); + return; } folder_view = modest_main_window_get_child_widget ( -- 1.7.9.5