From: Mark Spencer Date: Thu, 13 Nov 2003 05:43:07 +0000 (+0000) Subject: More generally stop streaming when interrupted X-Git-Tag: 0.7.0~273 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d886e2a557bbe627c9da609bda92efc2e01d9cbf;p=thirdparty%2Fasterisk.git More generally stop streaming when interrupted git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1739 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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);