From: Paul Date: Wed, 28 Aug 2013 07:00:29 +0000 (+0100) Subject: revert part of last commit X-Git-Tag: 3.9.3~50 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=f8d35f8d40194ac94ee4e8503e8ff8a3480b6284;hp=e377eee114ead1ecafd829a5937869e9bead2584 revert part of last commit bug 2989 remains fixed in as much as the segfault is prevented --- diff --git a/src/file_checker.c b/src/file_checker.c index fb4c89fb9..0ecee4261 100644 --- a/src/file_checker.c +++ b/src/file_checker.c @@ -109,26 +109,6 @@ static gboolean verify_folderlist_xml() g_free(bak); } } - - if (is_file_exist(filename) && is_file_exist(bak) && folder_read_list() < 0) { - AlertValue aval; - gchar *msg; - - msg = g_strdup_printf - (_("The file %s is corrupted! " - "Do you want to use the backup file from %s?"), FOLDER_LIST,buf); - aval = alertpanel(_("Warning"), msg, GTK_STOCK_NO, GTK_STOCK_YES, NULL); - g_free(msg); - if (aval != G_ALERTALTERNATE) - return FALSE; - else { - if (copy_file(bak,filename,FALSE) < 0) { - alertpanel_warning(_("Could not copy %s to %s"),bak,filename); - return FALSE; - } - g_free(bak); - } - } return TRUE; }