Message ID | da03cb94-7212-8780-7937-12f206bdc83a@virtuozzo.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | use-after-free in svc_process_common() | expand |
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index 4cf0f0776179..baeade37b0a0 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -1507,9 +1507,9 @@ bc_svc_process(struct svc_serv *serv, struct rpc_rqst *req, if (!proc_error) { /* Processing error: drop the request */ xprt_free_bc_request(req); - return 0; + error = -EINVAL; + goto out; } - /* Finally, send the reply synchronously */ memcpy(&req->rq_snd_buf, &rqstp->rq_res, sizeof(req->rq_snd_buf)); task = rpc_run_bc_task(req);
Signed-off-by: Vasily Averin <vvs@virtuozzo.com> --- net/sunrpc/svc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)