From: Anton Protopopov Date: Wed, 10 Feb 2016 17:50:21 +0000 (-0500) Subject: cifs: fix erroneous return value X-Git-Tag: MMI-PSA29.97-13-9~8501^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4b550af519854421dfec9f7732cdddeb057134b2;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git cifs: fix erroneous return value The setup_ntlmv2_rsp() function may return positive value ENOMEM instead of -ENOMEM in case of kmalloc failure. Signed-off-by: Anton Protopopov CC: Stable Signed-off-by: Steve French --- diff --git a/fs/cifs/cifsencrypt.c b/fs/cifs/cifsencrypt.c index afa09fce8151..e682b36a210f 100644 --- 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; }