From 6afb367b966d1874ce48804deb878b5f3280e0e4 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 3 Aug 2005 04:23:58 +0000 Subject: Fix issue with say digit str (bug #4883) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6265 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- say.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'say.c') 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