Re: [PATCH] crypto: deflate - Remove useless call "zlib_inflateEnd"

2021-04-09 Thread Herbert Xu
On Wed, Mar 31, 2021 at 11:34:57AM +0800, Jiapeng Chong wrote: > 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 > Signed-off-by: Jiapeng Chong > --- > crypto/deflate.c

[PATCH] crypto: deflate - Remove useless call "zlib_inflateEnd"

2021-03-30 Thread Jiapeng Chong
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 Signed-off-by: Jiapeng Chong --- crypto/deflate.c | 1 - 1 file changed, 1 deletion(-) diff --git a/crypto/deflate.c b/crypto/def