diff options
author | 9 <NotZed@Ximian.com> | 2001-10-29 16:23:32 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-29 16:23:32 +0800 |
commit | fa9505a288ebeab16883eb940bd1418f176fc426 (patch) | |
tree | 4efdf67f479c588fe872244128b0c205d462ef88 /libibex/ibex_block.c | |
parent | 5054beec4501b7c1ac4758cfffa6c9278b6cab59 (diff) | |
download | gsoc2013-evolution-fa9505a288ebeab16883eb940bd1418f176fc426.tar gsoc2013-evolution-fa9505a288ebeab16883eb940bd1418f176fc426.tar.gz gsoc2013-evolution-fa9505a288ebeab16883eb940bd1418f176fc426.tar.bz2 gsoc2013-evolution-fa9505a288ebeab16883eb940bd1418f176fc426.tar.lz gsoc2013-evolution-fa9505a288ebeab16883eb940bd1418f176fc426.tar.xz gsoc2013-evolution-fa9505a288ebeab16883eb940bd1418f176fc426.tar.zst gsoc2013-evolution-fa9505a288ebeab16883eb940bd1418f176fc426.zip |
Always rename file even if mv failed.
2001-10-29 <NotZed@Ximian.com>
* ibex_block.c (ibex_move): Always rename file even if mv failed.
svn path=/trunk/; revision=14326
Diffstat (limited to 'libibex/ibex_block.c')
-rw-r--r-- | libibex/ibex_block.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/libibex/ibex_block.c b/libibex/ibex_block.c index 3c96885f4f..5ac538346b 100644 --- a/libibex/ibex_block.c +++ b/libibex/ibex_block.c @@ -494,23 +494,26 @@ int ibex_close (ibex *ib) /* rename/move the ibex file */ int ibex_move(ibex *ib, const char *newname) { - int ret = -1; + int ret = 0, error; IBEX_LOCK(ib); if (ib->blocks) close_backend(ib); - if (rename(ib->name, newname) == -1) - goto error; + if (rename(ib->name, newname) == -1) { + ret = -1; + error = errno; + } g_free(ib->name); ib->name = g_strdup(newname); - ret = 0; -error: IBEX_UNLOCK(ib); + if (ret == -1) + errno = error; + return ret; } |