From d92e060dd9def776c3ef9916be4e6e979c4788ae Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Sat, 5 Mar 2011 01:25:28 +0100 Subject: s3-epmap: fix uninitialized variable in ep_register() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Guenther Signed-off-by: Günther Deschner --- source3/librpc/rpc/dcerpc_ep.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/librpc/rpc/dcerpc_ep.c') diff --git a/source3/librpc/rpc/dcerpc_ep.c b/source3/librpc/rpc/dcerpc_ep.c index e207b62b54..8cfd3b8626 100644 --- a/source3/librpc/rpc/dcerpc_ep.c +++ b/source3/librpc/rpc/dcerpc_ep.c @@ -215,6 +215,7 @@ static NTSTATUS ep_register(const struct ndr_interface_table *iface, h = cli->binding_handle; } else { + status = NT_STATUS_INVALID_PARAMETER; goto done; } -- cgit