svn commit: r246352 - head/sys/fs/ext2fs

Pedro F. Giffuni pfg at FreeBSD.org
Tue Feb 5 03:26:35 UTC 2013


Author: pfg
Date: Tue Feb  5 03:26:34 2013
New Revision: 246352
URL: http://svnweb.freebsd.org/changeset/base/246352

Log:
  ext2fs: move assignment where it is not dead.
  
  Submitted by:	Christoph Mallon
  MFC after:	2 weeks

Modified:
  head/sys/fs/ext2fs/ext2_lookup.c

Modified: head/sys/fs/ext2fs/ext2_lookup.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_lookup.c	Tue Feb  5 03:23:56 2013	(r246351)
+++ head/sys/fs/ext2fs/ext2_lookup.c	Tue Feb  5 03:26:34 2013	(r246352)
@@ -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) {


More information about the svn-src-all mailing list