FSCORE-347
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12873 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
13d3efb6d0
commit
718e5da6aa
|
@ -385,6 +385,7 @@ SWITCH_STANDARD_APP(eavesdrop_function)
|
|||
switch_safe_free(e_data.uuid_list[x]);
|
||||
}
|
||||
|
||||
free(sql);
|
||||
switch_core_db_close(db);
|
||||
|
||||
} else {
|
||||
|
|
|
@ -1113,8 +1113,8 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
|
|||
const char *from_id = switch_str_nil(switch_event_get_header(helper->event, "Other-Leg-Caller-ID-Number"));
|
||||
const char *to_user = switch_str_nil(switch_event_get_header(helper->event, "variable_sip_to_user"));
|
||||
const char *from_user = switch_str_nil(switch_event_get_header(helper->event, "variable_sip_from_user"));
|
||||
const char *clean_to_user = NULL;
|
||||
const char *clean_from_user = NULL;
|
||||
char *clean_to_user = NULL;
|
||||
char *clean_from_user = NULL;
|
||||
const char *p_to_user = switch_str_nil(switch_event_get_header(helper->event, "to-user"));
|
||||
#if 0
|
||||
char *buf;
|
||||
|
@ -1221,6 +1221,9 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
|
|||
stream.write_function(&stream, "</remote>\n");
|
||||
}
|
||||
}
|
||||
|
||||
switch_safe_free(clean_to_user);
|
||||
switch_safe_free(clean_from_user);
|
||||
}
|
||||
if (is_dialog) {
|
||||
stream.write_function(&stream, "</dialog>\n");
|
||||
|
|
|
@ -276,7 +276,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
|
|||
status = switch_ivr_play_file(session, NULL, odata, args);
|
||||
} else if (!strcasecmp(func, "break")) {
|
||||
done = 1;
|
||||
break;
|
||||
/* must allow the switch_safe_free below to execute or we leak - do not break here */
|
||||
} else if (!strcasecmp(func, "execute")) {
|
||||
switch_application_interface_t *app;
|
||||
char *cmd, *cmd_args;
|
||||
|
|
Loading…
Reference in New Issue