From: Qianqiang Liu Date: Fri, 13 Sep 2024 03:27:51 +0000 (+0800) Subject: smb: client: compress: fix an "illegal accesses" issue X-Git-Tag: v6.12-rc1~139^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b4af913465cc5f903227237d833b4911430fd97;p=thirdparty%2Fkernel%2Flinux.git smb: client: compress: fix an "illegal accesses" issue Using uninitialized value "bkt" when calling "kfree" Fixes: 13b68d44990d ("smb: client: compress: LZ77 code improvements cleanup") Signed-off-by: Qianqiang Liu Reviewed-by: Dan Carpenter Signed-off-by: Steve French --- diff --git a/fs/smb/client/compress.c b/fs/smb/client/compress.c index daf84e39861cb..2c008e9f0206f 100644 --- a/fs/smb/client/compress.c +++ b/fs/smb/client/compress.c @@ -233,7 +233,7 @@ static int collect_sample(const struct iov_iter *iter, ssize_t max, u8 *sample) static int is_compressible(const struct iov_iter *data) { const size_t read_size = SZ_2K, bkt_size = 256, max = SZ_4M; - struct bucket *bkt; + struct bucket *bkt = NULL; int i = 0, ret = 0; size_t len; u8 *sample;