Commit 23970a1c authored by Tom Rix's avatar Tom Rix Committed by Jan Kara

udf: initialize newblock to 0

The clang build reports this error
fs/udf/inode.c:805:6: error: variable 'newblock' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized]
        if (*err < 0)
            ^~~~~~~~
newblock is never set before error handling jump.
Initialize newblock to 0 and remove redundant settings.

Fixes: d8b39db5fab8 ("udf: Handle error when adding extent to a file")
Reported-by: default avatarNathan Chancellor <nathan@kernel.org>
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
Message-Id: <20221230175341.1629734-1-trix@redhat.com>
parent 83c7423d
...@@ -684,7 +684,7 @@ static sector_t inode_getblk(struct inode *inode, sector_t block, ...@@ -684,7 +684,7 @@ static sector_t inode_getblk(struct inode *inode, sector_t block,
struct kernel_lb_addr eloc, tmpeloc; struct kernel_lb_addr eloc, tmpeloc;
int c = 1; int c = 1;
loff_t lbcount = 0, b_off = 0; loff_t lbcount = 0, b_off = 0;
udf_pblk_t newblocknum, newblock; udf_pblk_t newblocknum, newblock = 0;
sector_t offset = 0; sector_t offset = 0;
int8_t etype; int8_t etype;
struct udf_inode_info *iinfo = UDF_I(inode); struct udf_inode_info *iinfo = UDF_I(inode);
...@@ -787,7 +787,6 @@ static sector_t inode_getblk(struct inode *inode, sector_t block, ...@@ -787,7 +787,6 @@ static sector_t inode_getblk(struct inode *inode, sector_t block,
ret = udf_do_extend_file(inode, &prev_epos, laarr, hole_len); ret = udf_do_extend_file(inode, &prev_epos, laarr, hole_len);
if (ret < 0) { if (ret < 0) {
*err = ret; *err = ret;
newblock = 0;
goto out_free; goto out_free;
} }
c = 0; c = 0;
...@@ -852,7 +851,6 @@ static sector_t inode_getblk(struct inode *inode, sector_t block, ...@@ -852,7 +851,6 @@ static sector_t inode_getblk(struct inode *inode, sector_t block,
goal, err); goal, err);
if (!newblocknum) { if (!newblocknum) {
*err = -ENOSPC; *err = -ENOSPC;
newblock = 0;
goto out_free; goto out_free;
} }
if (isBeyondEOF) if (isBeyondEOF)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment