diff options
author | 0 <NotZed@Ximian.com> | 2001-10-30 13:20:50 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-30 13:20:50 +0800 |
commit | 613e004309c27c94abd4b7159f430796ae70228a (patch) | |
tree | f90e6db60332027255585b17d0d1db07142694b0 /camel/providers/local | |
parent | aab1b48eaef5314da57ca3771b0cb7c9ae403773 (diff) | |
download | gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar.gz gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar.bz2 gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar.lz gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar.xz gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar.zst gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.zip |
Dont try to move ibex if we have none.
2001-10-30 <NotZed@Ximian.com>
* providers/local/camel-local-store.c (rename_folder): Dont try to
move ibex if we have none.
svn path=/trunk/; revision=14429
Diffstat (limited to 'camel/providers/local')
-rw-r--r-- | camel/providers/local/camel-local-store.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/camel/providers/local/camel-local-store.c b/camel/providers/local/camel-local-store.c index 32ca801606..daa70979dc 100644 --- a/camel/providers/local/camel-local-store.c +++ b/camel/providers/local/camel-local-store.c @@ -317,10 +317,12 @@ rename_folder(CamelStore *store, const char *old, const char *new, CamelExceptio /* try to rollback failures, has obvious races */ + d(printf("local rename folder '%s' '%s'\n", old, new)); + CAMEL_STORE_LOCK(store, cache_lock); folder = g_hash_table_lookup(store->folders, old); if (folder) { - if (ibex_move(folder->index, newibex) == -1) + if (folder->index && ibex_move(folder->index, newibex) == -1) goto ibex_failed; } else { if (xrename(old, new, path, ".ibex", TRUE, ex)) @@ -344,9 +346,10 @@ base_failed: xrename(new, old, path, ".ev-summary", TRUE, ex); summary_failed: - if (folder) - ibex_move(folder->index, oldibex); - else + if (folder) { + if (folder->index) + ibex_move(folder->index, oldibex); + } else xrename(new, old, path, ".ibex", TRUE, ex); ibex_failed: |