diff options
author | Stefan Metzmacher <metze@samba.org> | 2015-10-09 06:51:16 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2016-10-26 11:20:12 +0200 |
commit | 44648961671fe6b42780ab3fa95739233bad4894 (patch) | |
tree | 0c057fc4dd45de9b877ced3a88cc80ee8dac1b75 /source3/rpc_server | |
parent | 0bc10e7c462065d9a1dcb27713e726f4a4e56266 (diff) | |
download | samba-44648961671fe6b42780ab3fa95739233bad4894.tar.gz |
dcerpc.idl: split the padding from a possible fault buffer in dcerpc_fault
The 4 bytes of padding are always present and part of the header.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_pipe.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c index bcd7e5db6c2..c4ee46e6768 100644 --- a/source3/rpc_server/srv_pipe.c +++ b/source3/rpc_server/srv_pipe.c @@ -309,7 +309,6 @@ bool setup_fault_pdu(struct pipes_struct *p, NTSTATUS fault_status) ZERO_STRUCT(u); u.fault.status = NT_STATUS_V(fault_status); - u.fault._pad = data_blob_talloc_zero(p->mem_ctx, 4); /* * Marshall directly into the outgoing PDU space. We |