diff options
Diffstat (limited to 'net/sunrpc/svc.c')
| -rw-r--r-- | net/sunrpc/svc.c | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index 5a220b2bb376..e4296c8b861e 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c | |||
| @@ -196,12 +196,9 @@ svc_exit_thread(struct svc_rqst *rqstp) | |||
| 196 | struct svc_serv *serv = rqstp->rq_server; | 196 | struct svc_serv *serv = rqstp->rq_server; | 
| 197 | 197 | ||
| 198 | svc_release_buffer(rqstp); | 198 | svc_release_buffer(rqstp); | 
| 199 | if (rqstp->rq_resp) | 199 | kfree(rqstp->rq_resp); | 
| 200 | kfree(rqstp->rq_resp); | 200 | kfree(rqstp->rq_argp); | 
| 201 | if (rqstp->rq_argp) | 201 | kfree(rqstp->rq_auth_data); | 
| 202 | kfree(rqstp->rq_argp); | ||
| 203 | if (rqstp->rq_auth_data) | ||
| 204 | kfree(rqstp->rq_auth_data); | ||
| 205 | kfree(rqstp); | 202 | kfree(rqstp); | 
| 206 | 203 | ||
| 207 | /* Release the server */ | 204 | /* Release the server */ | 
