Commit e4b60e92 authored by Namjae Jeon's avatar Namjae Jeon

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
......@@ -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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment