From a6d8b31956c65f9e815f34669eff7a478ad2a9a0 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Thu, 18 May 2006 14:27:21 +0000 Subject: [PATCH] Fix endless looping message by checking value of res before doing retries stuff. (issue #7140 reported by tanischen) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@28169 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index f61f58e86d..35eedeca69 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6520,20 +6520,21 @@ static int advanced_options(struct ast_channel *chan, struct ast_vm_user *vmu, s res = ast_play_and_wait(chan, "vm-star-cancel"); if (!res) res = ast_waitfordigit(chan, 6000); - if (!res) + if (!res) { retries++; - if (retries > 3) - res = 't'; - break; - + if (retries > 3) + res = 't'; } - if (res == 't') - res = 0; - else if (res == '*') - res = -1; + break; + } + if (res == 't') + res = 0; + else if (res == '*') + res = -1; } - + } + } else if (option == 1) { /* Reply */ /* Send reply directly to sender */ -- 2.47.2