Fix issue with say digit str (bug #4883)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6265 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Mark Spencer 20 years ago
parent 4f0d1b8428
commit 6afb367b96

@ -209,7 +209,7 @@ int ast_say_digit_str_full(struct ast_channel *chan, const char *str, const char
int num = 0;
int res = 0;
while (str[num]) {
while (str[num] && !res) {
fn = NULL;
switch (str[num]) {
case ('*'):

Loading…
Cancel
Save