diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-25 10:57:36 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-25 10:57:36 +0100 |
commit | 1045069fee38d6ca05fa02d7faf6a587e6054ec9 (patch) | |
tree | 71ef951e3eba5315d4c3a5f8210cb560887a8748 /vdr.c | |
parent | cca9d858a7db91f6d73e19d588732e789dc10b4f (diff) | |
download | vdr-1045069fee38d6ca05fa02d7faf6a587e6054ec9.tar.gz vdr-1045069fee38d6ca05fa02d7faf6a587e6054ec9.tar.bz2 |
Fixed a possible crash if the recordings list is updated externally while the Recordings menu is open
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.tvdr.de * - * $Id: vdr.c 2.57.1.1 2013/10/16 09:46:36 kls Exp $ + * $Id: vdr.c 2.57.1.2 2013/12/25 10:54:36 kls Exp $ */ #include <getopt.h> @@ -1360,6 +1360,7 @@ int main(int argc, char *argv[]) // Disk housekeeping: RemoveDeletedRecordings(); + ClearVanishedRecordings(); cSchedules::Cleanup(); // Plugins housekeeping: PluginManager.Housekeeping(); |