From 165eae9c31604dc35823ef19ac2816ede11c7ee2 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Thu, 18 Jan 2018 10:13:29 +0100 Subject: Fixed wrongly removing the edited version after the cutter has completed --- recording.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recording.c b/recording.c index bb99d219..76b6ef76 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 4.17 2018/01/16 14:07:04 kls Exp $ + * $Id: recording.c 4.18 2018/01/18 10:13:29 kls Exp $ */ #include "recording.h" @@ -1937,9 +1937,9 @@ void cRecordingsHandlerEntry::Cleanup(cRecordings *Recordings) if (cutter) { // ...which had not yet ended delete cutter; cutter = NULL; + cVideoDirectory::RemoveVideoFile(fileNameDst); + Recordings->DelByName(fileNameDst); } - cVideoDirectory::RemoveVideoFile(fileNameDst); - Recordings->DelByName(fileNameDst); } if ((usage & (ruMove | ruCopy)) // this was a move/copy operation... && ((usage & ruPending) // ...which had not yet started... -- cgit v1.2.3