diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-01-11 17:13:04 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-01-22 17:12:21 +0100 |
commit | dcc2c8362df9af088613722ebd8a6261fb098a5c (patch) | |
tree | 36a96e50c17025d29c3428d5f202ff531cb0951a | |
parent | b8fdeb8ca7ce362058bb86a4e58b34fb6340867e (diff) | |
download | samba-dcc2c8362df9af088613722ebd8a6261fb098a5c.tar.gz samba-dcc2c8362df9af088613722ebd8a6261fb098a5c.tar.xz samba-dcc2c8362df9af088613722ebd8a6261fb098a5c.zip |
s3:rpc_server/netlogon: return a zero return_authenticator on error
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | source3/rpc_server/netlogon/srv_netlog_nt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/rpc_server/netlogon/srv_netlog_nt.c b/source3/rpc_server/netlogon/srv_netlog_nt.c index c83963393f..e3e7a3ee69 100644 --- a/source3/rpc_server/netlogon/srv_netlog_nt.c +++ b/source3/rpc_server/netlogon/srv_netlog_nt.c @@ -1018,6 +1018,7 @@ NTSTATUS _netr_ServerAuthenticate3(struct pipes_struct *p, talloc_unlink(p->mem_ctx, lp_ctx); if (!NT_STATUS_IS_OK(status)) { + ZERO_STRUCTP(r->out.return_credentials); goto out; } |