diff options
author | 2021-08-01 18:46:26 -0500 | |
---|---|---|
committer | 2021-08-01 18:46:26 -0500 | |
commit | 456af438ad490bac7ed954cb929bcec1df7f0c82 (patch) | |
tree | b5298038003f1db833ddf59e474c3f65d40b56d9 | |
parent | Merge pull request #63 from namjaejeon/cifsd-for-next (diff) | |
parent | ksmbd: fix an oops in error handling in smb2_open() (diff) | |
download | wireguard-linux-456af438ad490bac7ed954cb929bcec1df7f0c82.tar.xz wireguard-linux-456af438ad490bac7ed954cb929bcec1df7f0c82.zip |
Merge pull request #64 from namjaejeon/cifsd-for-next
ksmbd-fixes
Diffstat (limited to '')
-rw-r--r-- | fs/ksmbd/smb2pdu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index 209e32e61a75..636570ecfa31 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -2462,6 +2462,7 @@ int smb2_open(struct ksmbd_work *work) rc = PTR_ERR(name); if (rc != -ENOMEM) rc = -ENOENT; + name = NULL; goto err_out1; } |