From ef4f9ee51644a2b9d648667757f71498a04c7d0d Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 7 Nov 2007 18:41:25 +0000 Subject: [PATCH] add missing xml free git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6175 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/formats/mod_local_stream/mod_local_stream.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mod/formats/mod_local_stream/mod_local_stream.c b/src/mod/formats/mod_local_stream/mod_local_stream.c index 965e98c485..27eb54d366 100644 --- a/src/mod/formats/mod_local_stream/mod_local_stream.c +++ b/src/mod/formats/mod_local_stream/mod_local_stream.c @@ -332,6 +332,9 @@ static void launch_threads(void) switch_thread_create(&thread, thd_attr, read_stream_thread, source, source->pool); } + + switch_xml_free(xml); + }