mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:04:41 +01:00
smb/client: fix buffer size for smb311_posix_qinfo in smb2_compound_op()
Use `sizeof(struct smb311_posix_qinfo)` instead of sizeof its pointer,
so the allocated buffer matches the actual struct size.
Fixes: 6a5f6592a0 ("SMB311: Add support for query info using posix extensions (level 100)")
Reported-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
Signed-off-by: ZhangGuoDong <zhangguodong@kylinos.cn>
Reviewed-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
parent
6f0402539b
commit
12c43a062a
1 changed files with 2 additions and 2 deletions
|
|
@ -325,7 +325,7 @@ replay_again:
|
|||
cfile->fid.volatile_fid,
|
||||
SMB_FIND_FILE_POSIX_INFO,
|
||||
SMB2_O_INFO_FILE, 0,
|
||||
sizeof(struct smb311_posix_qinfo *) +
|
||||
sizeof(struct smb311_posix_qinfo) +
|
||||
(PATH_MAX * 2) +
|
||||
(sizeof(struct smb_sid) * 2), 0, NULL);
|
||||
} else {
|
||||
|
|
@ -335,7 +335,7 @@ replay_again:
|
|||
COMPOUND_FID,
|
||||
SMB_FIND_FILE_POSIX_INFO,
|
||||
SMB2_O_INFO_FILE, 0,
|
||||
sizeof(struct smb311_posix_qinfo *) +
|
||||
sizeof(struct smb311_posix_qinfo) +
|
||||
(PATH_MAX * 2) +
|
||||
(sizeof(struct smb_sid) * 2), 0, NULL);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue