]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 237323 via svnmerge from
authorJeff Peeler <jpeeler@digium.com>
Mon, 4 Jan 2010 16:26:26 +0000 (16:26 +0000)
committerJeff Peeler <jpeeler@digium.com>
Mon, 4 Jan 2010 16:26:26 +0000 (16:26 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
  r237323 | jpeeler | 2010-01-04 10:24:51 -0600 (Mon, 04 Jan 2010) | 5 lines

  Fix timeout for AGI command speech recognize.

  (closes issue #16297)
  Reported by: semond
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@237324 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_agi.c

index b02af1797a18d1ff75a76796716c4b658ceec897..86846b03a5a49d64f2fe8e942bb0eca2e3ffefcc 100644 (file)
@@ -1978,7 +1978,7 @@ static int handle_speechrecognize(struct ast_channel *chan, AGI *agi, int argc,
                switch (speech->state) {
                case AST_SPEECH_STATE_READY:
                        /* If the stream is done, start timeout calculation */
-                       if ((timeout > 0) && ((!chan->stream) || (chan->streamid == -1 && chan->timingfunc == NULL))) {
+                       if ((timeout > 0) && start == 0 && ((!chan->stream) || (chan->streamid == -1 && chan->timingfunc == NULL))) {
                                ast_stopstream(chan);
                                time(&start);
                        }