diff options
author | 2021-05-28 18:07:24 -0500 | |
---|---|---|
committer | 2021-05-28 18:07:24 -0500 | |
commit | 10a96b2b45e0d1fb7d6ecd7fa7fc4d3ee9915c2b (patch) | |
tree | 359054e22aee7883d205452330e50824407f7ea4 | |
parent | Merge pull request #50 from namjaejeon/cifsd-for-next (diff) | |
parent | cifsd: fix Control flow issues in ksmbd_build_ntlmssp_challenge_blob() (diff) | |
download | wireguard-linux-10a96b2b45e0d1fb7d6ecd7fa7fc4d3ee9915c2b.tar.xz wireguard-linux-10a96b2b45e0d1fb7d6ecd7fa7fc4d3ee9915c2b.zip |
Merge pull request #51 from namjaejeon/cifsd-for-next
cifsd-fixes
Diffstat (limited to '')
-rw-r--r-- | fs/cifsd/auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifsd/auth.c b/fs/cifsd/auth.c index 9b86cf4fd73f..5f47de49c05d 100644 --- a/fs/cifsd/auth.c +++ b/fs/cifsd/auth.c @@ -584,8 +584,8 @@ ksmbd_build_ntlmssp_challenge_blob(struct challenge_message *chgblob, struct target_info *tinfo; wchar_t *name; __u8 *target_name; - unsigned int len, flags, blob_off, blob_len, type, target_info_len = 0; - unsigned int uni_len, conv_len; + unsigned int flags, blob_off, blob_len, type, target_info_len = 0; + int len, uni_len, conv_len; int cflags = sess->ntlmssp.client_flags; memcpy(chgblob->Signature, NTLMSSP_SIGNATURE, 8); |