aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-04 19:06:26 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-04 19:06:26 +0000
commitbcdbfff0e6c822b07f28630a8e2df520c83a89b0 (patch)
tree8663e89f660c664c1914c735ca3f3b88b319478f
parent5e797c326e7e20103230955f96d7fffb88c245a4 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.2@48236 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_voicemail.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index a1b46d318..b7fa31011 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;
}