From d886e2a557bbe627c9da609bda92efc2e01d9cbf Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 13 Nov 2003 05:43:07 +0000 Subject: [PATCH] More generally stop streaming when interrupted git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1739 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index f8c5359f3f..7ff26243b4 100755 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -864,6 +864,7 @@ static int play_and_wait(struct ast_channel *chan, char *fn) if (d) return d; d = ast_waitstream(chan, AST_DIGIT_ANY); + ast_stopstream(chan); return d; } @@ -894,7 +895,6 @@ static int play_and_record(struct ast_channel *chan, char *playfile, char *recor d = ast_waitstream(chan,""); if (d < 0) return -1; - ast_stopstream(chan); } fmts = ast_strdupa(fmt);