mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-08 05:54:45 +00:00
recurse variable expansion in api variables
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6169 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
f496c18787
commit
22d52836e0
@ -1379,12 +1379,21 @@ SWITCH_DECLARE(char *) switch_channel_expand_variables(switch_channel_t *channel
|
|||||||
SWITCH_STANDARD_STREAM(stream);
|
SWITCH_STANDARD_STREAM(stream);
|
||||||
|
|
||||||
if (stream.data) {
|
if (stream.data) {
|
||||||
|
char *expanded = NULL;
|
||||||
|
|
||||||
|
if ((expanded = switch_channel_expand_variables(channel, vval)) == vval) {
|
||||||
|
expanded = NULL;
|
||||||
|
} else {
|
||||||
|
vval = expanded;
|
||||||
|
}
|
||||||
|
|
||||||
if (switch_api_execute(vname, vval, channel->session, &stream) == SWITCH_STATUS_SUCCESS) {
|
if (switch_api_execute(vname, vval, channel->session, &stream) == SWITCH_STATUS_SUCCESS) {
|
||||||
func_val = stream.data;
|
func_val = stream.data;
|
||||||
sub_val = func_val;
|
sub_val = func_val;
|
||||||
} else {
|
|
||||||
free(stream.data);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
switch_safe_free(expanded);
|
||||||
|
free(stream.data);
|
||||||
} else {
|
} else {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Memory Error!\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Memory Error!\n");
|
||||||
free(data);
|
free(data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user