From d2fa26daf2744f0242a75d583eea33b145371791 Mon Sep 17 00:00:00 2001 From: markster Date: Wed, 3 Aug 2005 04:23:58 +0000 Subject: Fix issue with say digit str (bug #4883) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6265 f38db490-d61c-443f-a65b-d21fe96a405b --- say.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/say.c b/say.c index 4ea7595e9..b98561c47 100755 --- a/say.c +++ b/say.c @@ -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 ('*'): -- cgit v1.2.3