mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed deleting the edited recording in case of an error
This commit is contained in:
parent
a84f9a8e19
commit
6c5a448dec
@ -2452,6 +2452,7 @@ Christoph Haubrich <christoph1.haubrich@arcor.de>
|
|||||||
for making the 'Edit path' dialog also show the total size of all recordings in that path
|
for making the 'Edit path' dialog also show the total size of all recordings in that path
|
||||||
for suggesting to make cRecordingInfo::Errors() return -1 for old recordings, and
|
for suggesting to make cRecordingInfo::Errors() return -1 for old recordings, and
|
||||||
reporting a missing 'const'
|
reporting a missing 'const'
|
||||||
|
for reporting that the edited recording is not deleted in case of an error
|
||||||
|
|
||||||
Pekka Mauno <pekka.mauno@iki.fi>
|
Pekka Mauno <pekka.mauno@iki.fi>
|
||||||
for fixing cSchedule::GetFollowingEvent() in case there is currently no present
|
for fixing cSchedule::GetFollowingEvent() in case there is currently no present
|
||||||
|
3
HISTORY
3
HISTORY
@ -9720,7 +9720,7 @@ Video Disk Recorder Revision History
|
|||||||
- Removed unused declaration of cDvbTuner::SetFrontendType() (thanks to Helmut Binder).
|
- Removed unused declaration of cDvbTuner::SetFrontendType() (thanks to Helmut Binder).
|
||||||
- Fixed handling incomplete multi-packet CAT (thanks to Helmut Binder).
|
- Fixed handling incomplete multi-packet CAT (thanks to Helmut Binder).
|
||||||
|
|
||||||
2021-06-20:
|
2021-06-21:
|
||||||
|
|
||||||
- Fixed restarting PMT pids after starting a recording on the currently viewed channel
|
- Fixed restarting PMT pids after starting a recording on the currently viewed channel
|
||||||
(with help from Helmut Binder).
|
(with help from Helmut Binder).
|
||||||
@ -9732,3 +9732,4 @@ Video Disk Recorder Revision History
|
|||||||
- When checking whether a recording has already been made, recording names are now
|
- When checking whether a recording has already been made, recording names are now
|
||||||
compared case insensitive.
|
compared case insensitive.
|
||||||
- Improved responsiveness in cSectionHandler::Action() (thanks to Helmut Binder).
|
- Improved responsiveness in cSectionHandler::Action() (thanks to Helmut Binder).
|
||||||
|
- Fixed deleting the edited recording in case of an error (reported by Christoph Haubrich).
|
||||||
|
11
recording.c
11
recording.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: recording.c 5.11 2021/06/20 10:03:28 kls Exp $
|
* $Id: recording.c 5.12 2021/06/21 15:30:16 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "recording.h"
|
#include "recording.h"
|
||||||
@ -1968,9 +1968,12 @@ bool cRecordingsHandlerEntry::Active(cRecordings *Recordings)
|
|||||||
void cRecordingsHandlerEntry::Cleanup(cRecordings *Recordings)
|
void cRecordingsHandlerEntry::Cleanup(cRecordings *Recordings)
|
||||||
{
|
{
|
||||||
if ((usage & ruCut)) { // this was a cut operation...
|
if ((usage & ruCut)) { // this was a cut operation...
|
||||||
if (cutter) { // ...which had not yet ended
|
if (cutter // ...which had not yet ended...
|
||||||
delete cutter;
|
|| error) { // ...or finished with error
|
||||||
cutter = NULL;
|
if (cutter) {
|
||||||
|
delete cutter;
|
||||||
|
cutter = NULL;
|
||||||
|
}
|
||||||
cVideoDirectory::RemoveVideoFile(fileNameDst);
|
cVideoDirectory::RemoveVideoFile(fileNameDst);
|
||||||
Recordings->DelByName(fileNameDst);
|
Recordings->DelByName(fileNameDst);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user