[asterisk-commits] jpeeler: branch 1.6.1 r164960 - in /branches/1.6.1: ./ apps/app_record.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Dec 16 16:52:17 CST 2008
Author: jpeeler
Date: Tue Dec 16 16:52:17 2008
New Revision: 164960
URL: http://svn.digium.com/view/asterisk?view=rev&rev=164960
Log:
Merged revisions 164942 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r164942 | jpeeler | 2008-12-16 16:45:39 -0600 (Tue, 16 Dec 2008) | 6 lines
(closes issue #13669)
Reported by: pj
Delete file recording if recording terminated from a hangup.
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/apps/app_record.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_record.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_record.c?view=diff&rev=164960&r1=164959&r2=164960
==============================================================================
--- branches/1.6.1/apps/app_record.c (original)
+++ branches/1.6.1/apps/app_record.c Tue Dec 16 16:52:17 2008
@@ -325,6 +325,7 @@
if (!f) {
ast_debug(1, "Got hangup\n");
res = -1;
+ ast_filedelete(args.filename, NULL);
}
if (gotsilence) {
More information about the asterisk-commits
mailing list