fix regression from Commit:4ae8282e6c6df0e296113e9b4b4a1383e1af8ad7

This commit is contained in:
Jeff Lenk 2011-03-31 09:38:48 -05:00
parent 73a9e05eaa
commit 78e16b86e6
1 changed files with 1 additions and 1 deletions

View File

@ -2852,7 +2852,7 @@ static switch_call_cause_t group_outgoing_channel(switch_core_session_t *session
if ((domain = strchr(group, '@'))) { if ((domain = strchr(group, '@'))) {
*domain++ = '\0'; *domain++ = '\0';
} else { } else {
domain = switch_core_get_variable_pdup("domain", switch_core_session_get_pool(session)); domain = switch_core_get_variable_dup("domain");
dup_domain = domain; dup_domain = domain;
} }