From: Jason Parker Date: Mon, 4 Dec 2006 19:06:26 +0000 (+0000) Subject: Fix an issue where a message isn't saved correctly when using ODBC storage and review... X-Git-Tag: 1.2.14~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c413a42eb1bf849a2f8c77ccd919822ee31634a;p=thirdparty%2Fasterisk.git Fix an issue where a message isn't saved correctly when using ODBC storage and reviewing a message. Issue 8016 - patch by sokhapkin. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@48236 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index a1b46d3188..b7fa310113 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6629,8 +6629,6 @@ static int play_record_review(struct ast_channel *chan, char *playfile, char *re ast_verbose(VERBOSE_PREFIX_3 "Saving message as is\n"); ast_streamfile(chan, "vm-msgsaved", chan->language); ast_waitstream(chan, ""); - STORE(recordfile, vmu->mailbox, vmu->context, -1); - DISPOSE(recordfile, -1); cmd = 't'; return res; }