mirror of https://github.com/torvalds/linux.git
crypto: zstd - fix duplicate check warning
Fix the following warnings reported by the static analyzer Smatch:
crypto/zstd.c:273 zstd_decompress()
warn: duplicate check 'scur' (previous on line 235)
Fixes: f5ad93ffb5 ("crypto: zstd - convert to acomp")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/linux-crypto/92929e50-5650-40be-8c0a-de81e77f0acf@sabinyo.mountain/
Signed-off-by: Suman Kumar Chakraborty <suman.kumar.chakraborty@intel.com>
Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
181698af38
commit
03ba056e63
|
|
@ -268,9 +268,8 @@ static int zstd_decompress(struct acomp_req *req)
|
||||||
total_out += outbuf.pos;
|
total_out += outbuf.pos;
|
||||||
|
|
||||||
acomp_walk_done_dst(&walk, outbuf.pos);
|
acomp_walk_done_dst(&walk, outbuf.pos);
|
||||||
} while (scur != inbuf.pos);
|
} while (inbuf.pos != scur);
|
||||||
|
|
||||||
if (scur)
|
|
||||||
acomp_walk_done_src(&walk, scur);
|
acomp_walk_done_src(&walk, scur);
|
||||||
} while (ret == 0);
|
} while (ret == 0);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue