ext4: mballoc: avoid garbage value from err
authorSu Hui <suhui@nfschina.com>
Tue, 25 Jul 2023 04:33:11 +0000 (12:33 +0800)
committerTheodore Ts'o <tytso@mit.edu>
Sun, 27 Aug 2023 15:27:12 +0000 (11:27 -0400)
commita50bda147421e24c1a5d47ddcc0675360b7cb3ac
treed46dfad620a8aefd49a4b9a476cca973ea37e6c5
parent79ebf48c44b5ba05a98af23f8830883daf36f4d3
ext4: mballoc: avoid garbage value from err

clang's static analysis warning: fs/ext4/mballoc.c
line 4178, column 6, Branch condition evaluates to a garbage value.

err is uninitialized and will be judged when 'len <= 0' or
it first enters the loop while the condition "!ext4_sb_block_valid()"
is true. Although this can't make problems now, it's better to
correct it.

Signed-off-by: Su Hui <suhui@nfschina.com>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Link: https://lore.kernel.org/r/20230725043310.1227621-1-suhui@nfschina.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/mballoc.c