diff options
-rw-r--r-- | source3/winbindd/winbindd_cm.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |