diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-24 14:41:09 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-24 14:41:09 +0100 |
commit | 7a2d3d993c932a12d17236f34a03f542c8943221 (patch) | |
tree | df7233b94b8502a5fa16cd163d46c954855a6c15 /vdr.c | |
parent | a9acab6b7ef720a6b5f4a9059f3d7843fb83777b (diff) | |
download | vdr-7a2d3d993c932a12d17236f34a03f542c8943221.tar.gz vdr-7a2d3d993c932a12d17236f34a03f542c8943221.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 3.4 2013/10/16 09:33:58 kls Exp $ + * $Id: vdr.c 3.5 2013/12/24 13:19:55 kls Exp $ */ #include <getopt.h> @@ -1369,6 +1369,7 @@ int main(int argc, char *argv[]) // Disk housekeeping: RemoveDeletedRecordings(); + ClearVanishedRecordings(); cSchedules::Cleanup(); // Plugins housekeeping: PluginManager.Housekeeping(); |