switch_ivr_play_say: Fix a segfault when using <nomatch/> in phrases

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16711 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Marc Olivier Chouinard 2010-02-21 08:45:38 +00:00
parent 87ad320bfd
commit 4ce38bb4d9
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
char *func = (char *) switch_xml_attr_soft(action, "function");
if (strchr(pattern, '(') && strchr(adata, '$')) {
len = (uint32_t) (strlen(data) + strlen(adata) + 10) * proceed;
len = (uint32_t) (strlen(data) + strlen(adata) + 10) * (proceed ? proceed : 1);
if (!(substituted = malloc(len))) {
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Memory Error!\n");
switch_regex_safe_free(re);