From 30a13ca0c682a03e6d5d8cd8ce5d463744af8477 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 17 Oct 2012 12:29:45 -0400 Subject: [PATCH] FS-4728 --resolve got it, related to multpile bindings --- src/switch_xml.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/switch_xml.c b/src/switch_xml.c index 2e7478093f..ec7eddec0a 100644 --- a/src/switch_xml.c +++ b/src/switch_xml.c @@ -222,12 +222,15 @@ SWITCH_DECLARE(switch_status_t) switch_xml_unbind_search_function_ptr(switch_xml switch_thread_rwlock_wrlock(B_RWLOCK); for (ptr = BINDINGS; ptr; ptr = ptr->next) { if (ptr->function == function) { + status = SWITCH_STATUS_SUCCESS; + if (last) { last->next = ptr->next; } else { BINDINGS = ptr->next; + last = NULL; + continue; } - status = SWITCH_STATUS_SUCCESS; } last = ptr; }