[Freeswitch-svn] [commit] r13259 - freeswitch/trunk/src/mod/event_handlers/mod_erlang_event
FreeSWITCH SVN
mrene at freeswitch.org
Thu May 7 21:05:39 PDT 2009
Author: mrene
Date: Thu May 7 23:05:39 2009
New Revision: 13259
Log:
Properly use switch_xml_parse_str_dynamic
Modified:
freeswitch/trunk/src/mod/event_handlers/mod_erlang_event/mod_erlang_event.c
Modified: freeswitch/trunk/src/mod/event_handlers/mod_erlang_event/mod_erlang_event.c
==============================================================================
--- freeswitch/trunk/src/mod/event_handlers/mod_erlang_event/mod_erlang_event.c (original)
+++ freeswitch/trunk/src/mod/event_handlers/mod_erlang_event/mod_erlang_event.c Thu May 7 23:05:39 2009
@@ -434,7 +434,7 @@
if (switch_strlen_zero(xmlstr)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "No Result\n");
- } else if (!(xml = switch_xml_parse_str_dynamic(xmlstr, strlen(xmlstr)))) {
+ } else if (!(xml = switch_xml_parse_str_dynamic(xmlstr, SWITCH_FALSE))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Parsing XML Result!\n");
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "XML parsed OK!\n");
More information about the Freeswitch-svn
mailing list