Commit e4b60e92 authored by Namjae Jeon's avatar Namjae Jeon
Browse files

ksmbd: fix wrong compression context size



Use smb2_compression_ctx instead of smb2_encryption_neg_context.

Signed-off-by: default avatarNamjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent a9c241d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -924,7 +924,7 @@ static int decode_compress_ctxt(struct ksmbd_conn *conn,
	 * Return compression context size in request.
	 * So need to plus extra number of CompressionAlgorithms size.
	 */
	return sizeof(struct smb2_encryption_neg_context) +
	return sizeof(struct smb2_compression_ctx) +
		((algo_cnt - 1) * 2);
}