}
if (!x_user) {
+ char *xtra;
int ok = 1;
/* TRX added destination_number and caller_id_number from the session object
* ideally switch_xml_* would do this for any curl request, but that can get tricky
* and see what it would take to make it automagically do that
*/
caller_profile = switch_channel_get_caller_profile(channel);
- char *xtra = switch_mprintf("mailbox=%s&destination_number=%s&caller_id_number=%s", myid,caller_profile->destination_number,caller_profile->caller_id_number);
+ xtra = switch_mprintf("mailbox=%s&destination_number=%s&caller_id_number=%s", myid,caller_profile->destination_number,caller_profile->caller_id_number);
assert(xtra);
if (sip->sip_request->rq_url) {
sofia_gateway_t *gateway;
+ char *from_key;
char *user = (char *) sip->sip_request->rq_url->url_user;
check_decode(user, session);
- char *from_key = switch_core_session_sprintf(session, "sip:%s@%s",
+ from_key = switch_core_session_sprintf(session, "sip:%s@%s",
user,
(char *) sip->sip_request->rq_url->url_host);