forked from Mirrors/freeswitch
null format string error
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4651 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
9d1f221d9b
commit
ce81898c5d
|
@ -475,7 +475,7 @@ static switch_status_t read_packet(listener_t *listener, switch_event_t **event,
|
|||
switch_xml_t xml;
|
||||
etype = "xml";
|
||||
|
||||
if ((xml = switch_event_xmlize(event, NULL))) {
|
||||
if ((xml = switch_event_xmlize(event, "%s", ""))) {
|
||||
listener->ebuf = switch_xml_toxml(xml);
|
||||
switch_xml_free(xml);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue