ext2: remove redundant assignment to pointer end
Pointer is assigned a value that is never read, the assignment is redundant and can be removed. Cleans up clang-scan warning: fs/ext2/xattr.c:555:3: warning: Value stored to 'end' is never read [deadcode.DeadStores] end = (char *)header + sb->s_blocksize; Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz> Message-Id: <20230317143420.419005-1-colin.i.king@gmail.com>
This commit is contained in:
parent
c87d175d0a
commit
fae0a2b207
|
@ -553,7 +553,6 @@ bad_block:
|
|||
error = -ENOMEM;
|
||||
if (header == NULL)
|
||||
goto cleanup;
|
||||
end = (char *)header + sb->s_blocksize;
|
||||
header->h_magic = cpu_to_le32(EXT2_XATTR_MAGIC);
|
||||
header->h_blocks = header->h_refcount = cpu_to_le32(1);
|
||||
last = here = ENTRY(header+1);
|
||||
|
|
Loading…
Reference in New Issue