From 4ce38bb4d9e7a798597504041ac01f72cec16da5 Mon Sep 17 00:00:00 2001 From: Marc Olivier Chouinard Date: Sun, 21 Feb 2010 08:45:38 +0000 Subject: [PATCH] switch_ivr_play_say: Fix a segfault when using in phrases git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16711 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_ivr_play_say.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_ivr_play_say.c b/src/switch_ivr_play_say.c index df73fa799b..19eb38f5ea 100644 --- a/src/switch_ivr_play_say.c +++ b/src/switch_ivr_play_say.c @@ -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);