fix 2 memory leaks detected by valgrind run

This commit is contained in:
Anthony Minessale 2011-11-15 07:50:45 -06:00
parent 179f6b57a6
commit 7ba5197009
2 changed files with 8 additions and 0 deletions

View File

@ -3339,6 +3339,10 @@ static switch_call_cause_t user_outgoing_channel(switch_core_session_t *session,
done:
if (x_user) {
switch_xml_free(x_user);
}
switch_xml_free(xml);
if (params) {

View File

@ -164,6 +164,10 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
write_cdr(sql);
switch_safe_free(sql);
if (expanded_vars != template_str) {
switch_safe_free(expanded_vars);
}
return status;
}