summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2013-02-05 03:26:34 +0000
committerpfg <pfg@FreeBSD.org>2013-02-05 03:26:34 +0000
commit5e55b2c6f7167a85ef25c5e89b3657cea1f67b36 (patch)
tree05536cccf8a7a7294c7da0e61a3aab57f8bd7332
parent935c860d1b33195a4176499a8009549fd7a1c814 (diff)
downloadFreeBSD-src-5e55b2c6f7167a85ef25c5e89b3657cea1f67b36.zip
FreeBSD-src-5e55b2c6f7167a85ef25c5e89b3657cea1f67b36.tar.gz
ext2fs: move assignment where it is not dead.
Submitted by: Christoph Mallon MFC after: 2 weeks
-rw-r--r--sys/fs/ext2fs/ext2_lookup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/fs/ext2fs/ext2_lookup.c b/sys/fs/ext2fs/ext2_lookup.c
index 57c8ece..8827550 100644
--- a/sys/fs/ext2fs/ext2_lookup.c
+++ b/sys/fs/ext2fs/ext2_lookup.c
@@ -1094,9 +1094,10 @@ ext2_checkpath(source, target, cred)
error = EEXIST;
goto out;
}
- error = 0;
- if (target->i_number == EXT2_ROOTINO)
+ if (target->i_number == EXT2_ROOTINO) {
+ error = 0;
goto out;
+ }
for (;;) {
if (vp->v_type != VDIR) {
OpenPOWER on IntegriCloud