Explorar o código

ext4: remove unneeded variable in ext4_xattr_check_block()

We could return directly from ext4_xattr_check_block(). Thus, we
shouldn't need to define a 'error' variable.

Signed-off-by: Zheng Liu <wenqing.lz@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Zheng Liu %!s(int64=13) %!d(string=hai) anos
pai
achega
f1b3a2a753
Modificáronse 1 ficheiros con 1 adicións e 4 borrados
  1. 1 4
      fs/ext4/xattr.c

+ 1 - 4
fs/ext4/xattr.c

@@ -158,13 +158,10 @@ ext4_xattr_check_names(struct ext4_xattr_entry *entry, void *end)
 static inline int
 static inline int
 ext4_xattr_check_block(struct buffer_head *bh)
 ext4_xattr_check_block(struct buffer_head *bh)
 {
 {
-	int error;
-
 	if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
 	if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
 	    BHDR(bh)->h_blocks != cpu_to_le32(1))
 	    BHDR(bh)->h_blocks != cpu_to_le32(1))
 		return -EIO;
 		return -EIO;
-	error = ext4_xattr_check_names(BFIRST(bh), bh->b_data + bh->b_size);
-	return error;
+	return ext4_xattr_check_names(BFIRST(bh), bh->b_data + bh->b_size);
 }
 }
 
 
 static inline int
 static inline int