From 7f0a93f2ed9295a6720d96285be768adfc7403a6 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Mon, 21 Apr 2003 20:00:56 +0000 Subject: (create_folder_directory): Don't signal an error if mkdir() returns EEXIST. This should at least help with situations like the one described in #40989. svn path=/trunk/; revision=20911 --- shell/e-local-storage.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'shell/e-local-storage.c') diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index 6aa41e23f8..cc72484175 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -393,13 +393,12 @@ create_folder_directory (ELocalStorage *local_storage, parent = g_strdup_printf ("%s/", parent_path); subfolders_directory_physical_path = e_path_to_physical (priv->base_path, parent); - if (! g_file_test (subfolders_directory_physical_path, G_FILE_TEST_EXISTS)) { - if (mkdir (subfolders_directory_physical_path, 0700) == -1) { - g_free (subfolders_directory_physical_path); - g_free (parent); - return errno_to_storage_result (); - } + if (mkdir (subfolders_directory_physical_path, 0700) == -1 && errno != EEXIST) { + g_free (subfolders_directory_physical_path); + g_free (parent); + return errno_to_storage_result (); } + g_free (subfolders_directory_physical_path); g_free (parent); } -- cgit v1.2.3