diff options
author | Volker Lendecke <vl@samba.org> | 2009-01-17 12:18:29 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-01-18 15:40:44 +0100 |
commit | 5e6f3eaae9435b1ab7b36726e7b898d4994fcebf (patch) | |
tree | 2bb36b1d262f8e834196d4ccd4d7eb6ea54c1a36 /source3/librpc | |
parent | 5987c8269779ca2a7207c37a94b0e841a380d7d1 (diff) | |
download | samba-5e6f3eaae9435b1ab7b36726e7b898d4994fcebf.tar.gz samba-5e6f3eaae9435b1ab7b36726e7b898d4994fcebf.tar.xz samba-5e6f3eaae9435b1ab7b36726e7b898d4994fcebf.zip |
Move initialization of the reply prs_struct to rpc_api_pipe
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/rpc/dcerpc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/librpc/rpc/dcerpc.c b/source3/librpc/rpc/dcerpc.c index 69bfc6f329a..21a2004422c 100644 --- a/source3/librpc/rpc/dcerpc.c +++ b/source3/librpc/rpc/dcerpc.c @@ -84,7 +84,8 @@ NTSTATUS dcerpc_ndr_request_recv(struct rpc_request *req) prs_init_empty( &r_ps, req, UNMARSHALL ); - status = rpc_api_pipe_req(req->pipe->rpc_cli, req->opnum, &req->q_ps, &r_ps); + status = rpc_api_pipe_req(req, req->pipe->rpc_cli, req->opnum, + &req->q_ps, &r_ps); prs_mem_free( &req->q_ps ); |