diff options
author | Timo Eskola <timo@tolleri.net> | 2018-09-02 09:05:22 +0300 |
---|---|---|
committer | Timo Eskola <timo@tolleri.net> | 2018-09-02 09:05:22 +0300 |
commit | e12245cacc509ca76a9e2192a3c9c42be0a52861 (patch) | |
tree | 1e8bbbee0baf5517e63397cf214c65b7097356db /menu.c | |
parent | 08f0cb51279c0ba868b2543e1447c2ab4123a433 (diff) | |
download | vdr-plugin-duplicates-e12245cacc509ca76a9e2192a3c9c42be0a52861.tar.gz vdr-plugin-duplicates-e12245cacc509ca76a9e2192a3c9c42be0a52861.tar.bz2 |
Use temporary list when scanning duplicate recordings.
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -286,7 +286,7 @@ eOSState cMenuDuplicates::Delete(void) { RecordingsHandler.Del(FileName); // must do this w/o holding a lock, because the cleanup section in cDirCopier::Action() might request one! if (cReplayControl::NowReplaying() && strcmp(cReplayControl::NowReplaying(), FileName) == 0) cControl::Shutdown(); - cStateKey recordingsStateKey; + cStateKey recordingsStateKey; cRecordings *Recordings = cRecordings::GetRecordingsWrite(recordingsStateKey); Recordings->SetExplicitModify(); cRecording *recording = Recordings->GetByName(FileName); |