From: Stefan Metzmacher Date: Sat, 22 Oct 2011 01:09:59 +0000 (+0200) Subject: s4:finddcs_cldap: close the socket when it's not used anymore X-Git-Url: http://git.samba.org/?p=rusty%2Fsamba.git;a=commitdiff_plain;h=7e4e4d09099c5b381a4474dcc94c6a234501b1a9 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 --- diff --git a/source4/libcli/finddcs_cldap.c b/source4/libcli/finddcs_cldap.c index 359ec70c8c5..6dd0a2f1a65 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);