Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f80f62a authored by Wei Yuan's avatar Wei Yuan Committed by Theodore Ts'o
Browse files

ext4: remove useless condition in if statement.



In this if statement, the previous condition is useless, the later one
has covered it.

Signed-off-by: default avatarWeiyuan <weiyuan.wei@huawei.com>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
Reviewed-by: default avatarLukas Czerner <lczerner@redhat.com>
parent 72b8e0f9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -638,8 +638,7 @@ ext4_xattr_set_entry(struct ext4_xattr_info *i, struct ext4_xattr_search *s)
		free += EXT4_XATTR_LEN(name_len);
	}
	if (i->value) {
		if (free < EXT4_XATTR_SIZE(i->value_len) ||
		    free < EXT4_XATTR_LEN(name_len) +
		if (free < EXT4_XATTR_LEN(name_len) +
			   EXT4_XATTR_SIZE(i->value_len))
			return -ENOSPC;
	}