From b7676c4b48f2d39446b853bc87c0b288ac368e36 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 22 Mar 2005 00:26:27 +0000 Subject: r5930: Fix initialisation of dcerpc_binding->authservice (This used to be commit f8cf161e0e59bd6b2a62135be8511403f4e9ca70) --- source4/librpc/rpc/dcerpc_util.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/librpc/rpc') diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index ed4015c878..bbbda5ee28 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -335,6 +335,8 @@ NTSTATUS dcerpc_parse_binding(TALLOC_CTX *mem_ctx, const char *s, struct dcerpc_ return NT_STATUS_NO_MEMORY; } + b->authservice = NULL; + p = strchr(s, '@'); if (p && PTR_DIFF(p, s) == 36) { /* 36 is the length of a UUID */ -- cgit