diff options
Diffstat (limited to 'net/sunrpc/svcauth_unix.c')
| -rw-r--r-- | net/sunrpc/svcauth_unix.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index 9c3b9f01446..12e4897d0bf 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c @@ -740,6 +740,7 @@ svcauth_null_accept(struct svc_rqst *rqstp, __be32 *authp)  	struct svc_cred	*cred = &rqstp->rq_cred;  	cred->cr_group_info = NULL; +	cred->cr_principal = NULL;  	rqstp->rq_client = NULL;  	if (argv->iov_len < 3*4) @@ -805,6 +806,7 @@ svcauth_unix_accept(struct svc_rqst *rqstp, __be32 *authp)  	int		len   = argv->iov_len;  	cred->cr_group_info = NULL; +	cred->cr_principal = NULL;  	rqstp->rq_client = NULL;  	if ((len -= 3*4) < 0)  |