From b50ae28be07b93eef04e6e4b9eeb9fc440e21bd4 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 23 Sep 2009 06:23:50 +0200 Subject: [PATCH] s3:winbind: Fix an uninitialized variable (cherry picked from commit 0724649a8a7c04d015317d9dc2ae43ee87c1bd25) --- source/winbindd/winbindd_cm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/winbindd/winbindd_cm.c b/source/winbindd/winbindd_cm.c index 9ea3e75116a..bf8490edda3 100644 --- a/source/winbindd/winbindd_cm.c +++ b/source/winbindd/winbindd_cm.c @@ -2175,7 +2175,7 @@ NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain, status = init_dc_connection(domain); if (!NT_STATUS_IS_OK(status)) { - goto done; + return status; } conn = &domain->conn; -- 2.47.2