From 857efe326743367fe8f28ab5e8442c04db342c37 Mon Sep 17 00:00:00 2001 From: Brian West Date: Mon, 9 Feb 2009 16:18:21 +0000 Subject: [PATCH] xml_free in the proper location if invalid data is given to group_call git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11704 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_commands/mod_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_commands/mod_commands.c b/src/mod/applications/mod_commands/mod_commands.c index 67a1b1bc96..ff0b78c8cf 100644 --- a/src/mod/applications/mod_commands/mod_commands.c +++ b/src/mod/applications/mod_commands/mod_commands.c @@ -248,8 +248,8 @@ SWITCH_STANDARD_API(group_call_function) } } - switch_xml_free(xml); } + switch_xml_free(xml); switch_event_destroy(¶ms); }