diff options
Diffstat (limited to 'librpc/gen_ndr/srv_echo.c')
-rw-r--r-- | librpc/gen_ndr/srv_echo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/librpc/gen_ndr/srv_echo.c b/librpc/gen_ndr/srv_echo.c index 715f21e085..b4c21dd270 100644 --- a/librpc/gen_ndr/srv_echo.c +++ b/librpc/gen_ndr/srv_echo.c @@ -812,7 +812,7 @@ NTSTATUS rpc_rpcecho_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, ZERO_STRUCT(r->out); r->out.out_data = talloc_zero(mem_ctx, uint32_t); if (r->out.out_data == NULL) { - return NT_STATUS_NO_MEMORY; + return NT_STATUS_NO_MEMORY; } _echo_AddOne(cli->pipes_struct, r); @@ -824,7 +824,7 @@ NTSTATUS rpc_rpcecho_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, ZERO_STRUCT(r->out); r->out.out_data = talloc_zero_array(mem_ctx, uint8_t, r->in.len); if (r->out.out_data == NULL) { - return NT_STATUS_NO_MEMORY; + return NT_STATUS_NO_MEMORY; } _echo_EchoData(cli->pipes_struct, r); @@ -842,7 +842,7 @@ NTSTATUS rpc_rpcecho_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, ZERO_STRUCT(r->out); r->out.data = talloc_zero_array(mem_ctx, uint8_t, r->in.len); if (r->out.data == NULL) { - return NT_STATUS_NO_MEMORY; + return NT_STATUS_NO_MEMORY; } _echo_SourceData(cli->pipes_struct, r); @@ -854,7 +854,7 @@ NTSTATUS rpc_rpcecho_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, ZERO_STRUCT(r->out); r->out.s2 = talloc_zero(mem_ctx, const char *); if (r->out.s2 == NULL) { - return NT_STATUS_NO_MEMORY; + return NT_STATUS_NO_MEMORY; } _echo_TestCall(cli->pipes_struct, r); @@ -866,7 +866,7 @@ NTSTATUS rpc_rpcecho_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, ZERO_STRUCT(r->out); r->out.info = talloc_zero(mem_ctx, union echo_Info); if (r->out.info == NULL) { - return NT_STATUS_NO_MEMORY; + return NT_STATUS_NO_MEMORY; } r->out.result = _echo_TestCall2(cli->pipes_struct, r); |