From aa2e415442fe121a3db5fa79e53ad732d78e9572 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 21 Nov 2011 18:03:44 +0100 Subject: s3:winbindd_cm: close sockfd on error in cm_prepare_connection() metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Mon Nov 21 19:58:58 CET 2011 on sn-devel-104 --- source3/winbindd/winbindd_cm.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3') diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c index 7cfcaba545..cfb11039fb 100644 --- a/source3/winbindd/winbindd_cm.c +++ b/source3/winbindd/winbindd_cm.c @@ -802,6 +802,7 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain, mutex = grab_named_mutex(talloc_tos(), controller, WINBIND_SERVER_MUTEX_WAIT_TIME); if (mutex == NULL) { + close(sockfd); DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n", controller)); result = NT_STATUS_POSSIBLE_DEADLOCK; @@ -814,6 +815,7 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain, controller, domain->alt_name, SMB_SIGNING_DEFAULT, flags); if (*cli == NULL) { + close(sockfd); DEBUG(1, ("Could not cli_initialize\n")); result = NT_STATUS_NO_MEMORY; goto done; -- cgit