Skip to content
Snippets Groups Projects
Commit 7ce6d960 authored by agupta's avatar agupta Committed by Joshua Colp
Browse files

app_amd: Fix infinite loop on silent calls

The total time logic will now be executed on calls which
do not pass any media.

ASTERISK-28143

Change-Id: I24726bd29d7e467fc721ca265363417234b22855
parent 8e21c25c
No related branches found
No related tags found
No related merge requests found
......@@ -280,7 +280,7 @@ static void isAnsweringMachine(struct ast_channel *chan, const char *data)
int ms = 0;
/* Figure out how long we waited */
if (res > 0) {
if (res >= 0) {
ms = 2 * maxWaitTimeForFrame - res;
}
......@@ -410,6 +410,14 @@ static void isAnsweringMachine(struct ast_channel *chan, const char *data)
}
}
} else {
iTotalTime += ms;
if (iTotalTime >= totalAnalysisTime) {
ast_frfree(f);
strcpy(amdStatus , "NOTSURE");
sprintf(amdCause , "TOOLONG-%d", iTotalTime);
break;
}
}
ast_frfree(f);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment