diff options
author | Anton Protopopov <a.s.protopopov@gmail.com> | 2016-02-10 12:50:21 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-25 11:57:48 -0800 |
commit | 65b1cbfcc31b63903265bdb6851bfb32ed71c8db (patch) | |
tree | 264eb80b3ca58bb66825877c9303690ef4dbd03d | |
parent | 2388eb1b0645f815b193165b17c0ab0f161ec17e (diff) | |
download | lwn-65b1cbfcc31b63903265bdb6851bfb32ed71c8db.tar.gz lwn-65b1cbfcc31b63903265bdb6851bfb32ed71c8db.zip |
cifs: fix erroneous return value
commit 4b550af519854421dfec9f7732cdddeb057134b2 upstream.
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>
Signed-off-by: Steve French <smfrench@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | fs/cifs/cifsencrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsencrypt.c b/fs/cifs/cifsencrypt.c index 5c807b23ca67..182e82f22b3a 100644 --- a/fs/cifs/cifsencrypt.c +++ b/fs/cifs/cifsencrypt.c @@ -591,7 +591,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; } |