Fix the following whitescan warning: Calling "zlib_inflateEnd(&workspace->strm)" is only useful for its return value, which is ignored.
Reported-by: Abaci Robot <[email protected]> Signed-off-by: Jiapeng Chong <[email protected]> --- fs/btrfs/zlib.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/btrfs/zlib.c b/fs/btrfs/zlib.c index d524acf..93537cc 100644 --- a/fs/btrfs/zlib.c +++ b/fs/btrfs/zlib.c @@ -357,7 +357,6 @@ int zlib_decompress_bio(struct list_head *ws, struct compressed_bio *cb) else ret = 0; done: - zlib_inflateEnd(&workspace->strm); if (data_in) kunmap(pages_in[page_in_index]); if (!ret) -- 1.8.3.1

