summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-02-02 12:49:58 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-02-02 12:49:58 -0800
commit1fc576b82b96d9bb033ff0098e1c0bf68de282b2 (patch)
treec4f8cb6640de3dff75ad7c33de0eedae4e230613 /net
parente4178c75049c581114998a850ecdfa5a2811cde6 (diff)
parent034dd34ff4916ec1f8f74e39ca3efb04eab2f791 (diff)
downloadlinux-0-day-1fc576b82b96d9bb033ff0098e1c0bf68de282b2.tar.gz
linux-0-day-1fc576b82b96d9bb033ff0098e1c0bf68de282b2.tar.xz
Merge tag 'nfsd-4.10-2' of git://linux-nfs.org/~bfields/linux
Pull nfsd fixes from Bruce Fields: "Three more miscellaneous nfsd bugfixes" * tag 'nfsd-4.10-2' of git://linux-nfs.org/~bfields/linux: svcrpc: fix oops in absence of krb5 module nfsd: special case truncates some more NFSD: Fix a null reference case in find_or_create_lock_stateid()
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/auth_gss/gss_rpc_xdr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth_gss/gss_rpc_xdr.c b/net/sunrpc/auth_gss/gss_rpc_xdr.c
index dc6fb79a361f1..25d9a9cf7b66b 100644
--- a/net/sunrpc/auth_gss/gss_rpc_xdr.c
+++ b/net/sunrpc/auth_gss/gss_rpc_xdr.c
@@ -260,7 +260,7 @@ static int gssx_dec_option_array(struct xdr_stream *xdr,
if (!oa->data)
return -ENOMEM;
- creds = kmalloc(sizeof(struct svc_cred), GFP_KERNEL);
+ creds = kzalloc(sizeof(struct svc_cred), GFP_KERNEL);
if (!creds) {
kfree(oa->data);
return -ENOMEM;