mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Fixed initializing the timer's flags in the cTimer copy constructor
This commit is contained in:
		| @@ -960,6 +960,7 @@ Andreas Mair <andreas@vdr-developer.org> | ||||
|  for making the SVDRP command LSTC list the channels with group separators if the | ||||
|  option ':groups' is given | ||||
|  for fixing handling 3 and 4 byte UTF-8 symbols in Utf8CharGet() | ||||
|  for fixing initializing the timer's flags in the cTimer copy constructor | ||||
|  | ||||
| Olivier Jacques <jacquesolivier@hotmail.com>) | ||||
|  for translating OSD texts to the French language | ||||
|   | ||||
							
								
								
									
										2
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								HISTORY
									
									
									
									
									
								
							| @@ -5736,3 +5736,5 @@ Video Disk Recorder Revision History | ||||
|   Nissl). | ||||
| - Improved logging system time changes to avoid problems on slow systems under | ||||
|   heavy load (suggested by Helmut Auer). | ||||
| - Fixed initializing the timer's flags in the cTimer copy constructor (thanks to | ||||
|   Andreas Mair). | ||||
|   | ||||
							
								
								
									
										3
									
								
								timers.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								timers.c
									
									
									
									
									
								
							| @@ -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; | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user