ext2: remove redundant assignment to pointer end
authorColin Ian King <colin.i.king@gmail.com>
Fri, 17 Mar 2023 14:34:20 +0000 (14:34 +0000)
committerJan Kara <jack@suse.cz>
Tue, 21 Mar 2023 14:06:06 +0000 (15:06 +0100)
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>

fs/ext2/xattr.c

index 641abfa..d4015e6 100644 (file)
@@ -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);