diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-04-13 12:47:58 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-04-13 12:47:58 +0200 |
commit | 1d417431d675168fc56c2e9f8a9ea56a2768d7c7 (patch) | |
tree | 2fbe227a76ff54424c9ed7af3bc4b1a039b034b5 /timers.c | |
parent | f933b63d1f6cbee306dadfab12bdd70681152085 (diff) | |
download | vdr-1d417431d675168fc56c2e9f8a9ea56a2768d7c7.tar.gz vdr-1d417431d675168fc56c2e9f8a9ea56a2768d7c7.tar.bz2 |
Fixed initializing the timer's flags in the cTimer copy constructor
Diffstat (limited to 'timers.c')
-rw-r--r-- | timers.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.c 1.73 2008/02/16 14:47:40 kls Exp $ + * $Id: timers.c 1.73.1.1 2008/04/13 12:47:12 kls Exp $ */ #include "timers.h" @@ -92,6 +92,7 @@ cTimer::cTimer(const cTimer &Timer) channel = NULL; aux = NULL; event = NULL; + flags = tfNone; *this = Timer; } |