From 7e4e4d09099c5b381a4474dcc94c6a234501b1a9 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 22 Oct 2011 03:09:59 +0200 Subject: s4:finddcs_cldap: close the socket when it's not used anymore The amount of possible fd's might be restricted, so close them early. metze --- source4/libcli/finddcs_cldap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/libcli/finddcs_cldap.c') diff --git a/source4/libcli/finddcs_cldap.c b/source4/libcli/finddcs_cldap.c index 359ec70c8c..6dd0a2f1a6 100644 --- a/source4/libcli/finddcs_cldap.c +++ b/source4/libcli/finddcs_cldap.c @@ -271,7 +271,8 @@ static void finddcs_cldap_netlogon_replied(struct tevent_req *subreq) state = tevent_req_callback_data(subreq, struct finddcs_cldap_state); status = cldap_netlogon_recv(subreq, state->netlogon, state->netlogon); - talloc_free(subreq); + TALLOC_FREE(subreq); + TALLOC_FREE(state->cldap); if (!NT_STATUS_IS_OK(status)) { state->srv_address_index++; finddcs_cldap_next_server(state); -- cgit