projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f34d69c
)
cifs: fix erroneous return value
author
Anton Protopopov
<a.s.protopopov@gmail.com>
Wed, 10 Feb 2016 17:50:21 +0000
(12:50 -0500)
committer
Steve French
<smfrench@gmail.com>
Thu, 11 Feb 2016 00:23:31 +0000
(18:23 -0600)
The setup_ntlmv2_rsp() function may return positive value ENOMEM instead
of -ENOMEM in case of kmalloc failure.
Signed-off-by: Anton Protopopov <a.s.protopopov@gmail.com>
CC: Stable <stable@vger.kernel.org>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/cifsencrypt.c
patch
|
blob
|
history
diff --git
a/fs/cifs/cifsencrypt.c
b/fs/cifs/cifsencrypt.c
index
afa09fc
..
e682b36
100644
(file)
--- a/
fs/cifs/cifsencrypt.c
+++ b/
fs/cifs/cifsencrypt.c
@@
-714,7
+714,7
@@
setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp)
ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL);
if (!ses->auth_key.response) {
- rc = ENOMEM;
+ rc =
-
ENOMEM;
ses->auth_key.len = 0;
goto setup_ntlmv2_rsp_ret;
}