]> git.hungrycats.org Git - linux/commit
ext4: fix potential unnitialized variable
authorDan Carpenter <dan.carpenter@linaro.org>
Wed, 17 Apr 2024 18:10:40 +0000 (21:10 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 May 2024 07:49:47 +0000 (09:49 +0200)
commit1637c0eff73d883a89b2dfc85593e31841729264
tree0f832383706a84ee5712d9f6527c94e175840526
parentc87c2b279747ace7c27e4a44ca44507cae8e346b
ext4: fix potential unnitialized variable

[ Upstream commit 3f4830abd236d0428e50451e1ecb62e14c365e9b ]

Smatch complains "err" can be uninitialized in the caller.

    fs/ext4/indirect.c:349 ext4_alloc_branch()
    error: uninitialized symbol 'err'.

Set the error to zero on the success path.

Fixes: 8016e29f4362 ("ext4: fast commit recovery path")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/363a4673-0fb8-4adf-b4fb-90a499077276@moroto.mountain
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/ext4/mballoc.c