Fix the following whitescan warning: Calling "zlib_inflateEnd(&ctx->decomp_stream)" is only useful for its return value, which is ignored. Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx> Signed-off-by: Jiapeng Chong <jiapeng.chong@xxxxxxxxxxxxxxxxx> --- crypto/deflate.c | 1 - 1 file changed, 1 deletion(-) diff --git a/crypto/deflate.c b/crypto/deflate.c index b2a46f6..cac1672 100644 --- a/crypto/deflate.c +++ b/crypto/deflate.c @@ -101,7 +101,6 @@ static void deflate_comp_exit(struct deflate_ctx *ctx) static void deflate_decomp_exit(struct deflate_ctx *ctx) { - zlib_inflateEnd(&ctx->decomp_stream); vfree(ctx->decomp_stream.workspace); } -- 1.8.3.1