From 55693383e204d51eea08d6bb7f1a030c472ea0f9 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Thu, 23 Mar 2017 06:19:18 -0400 Subject: [PATCH] res_xmpp: Fix ref counting issue The only remaining reference to the endpoint is in the endpoints container, and because it is unlinked in ast_endpoint_shutdown, we don't have to explicitly cleanup the endpoint ourselves. Change-Id: I912a2692e52d3e2ed445b32d8ae3f9004bc2f2e8 --- res/res_xmpp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/res/res_xmpp.c b/res/res_xmpp.c index 11fbd2aeb9..e422c14a2a 100644 --- a/res/res_xmpp.c +++ b/res/res_xmpp.c @@ -561,7 +561,6 @@ static void xmpp_client_destructor(void *obj) ast_xmpp_client_disconnect(client); ast_endpoint_shutdown(client->endpoint); - ao2_cleanup(client->endpoint); client->endpoint = NULL; if (client->filter) { -- 2.47.2