mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
Fixed a race condition in cFemonReceiver (Thanks to Reinhard Nissl).
This commit is contained in:
parent
830aa73e1a
commit
64e56af6dc
4
HISTORY
4
HISTORY
@ -248,3 +248,7 @@ VDR Plugin 'femon' Revision History
|
||||
2007-05-01: Version 1.1.2
|
||||
|
||||
- Fixed opening while replaying (Thanks to Antti Seppälä for reporting this one).
|
||||
|
||||
2007-05-15: Version 1.1.3
|
||||
|
||||
- Fixed a race condition in cFemonReceiver (Thanks to Reinhard Nissl).
|
||||
|
2
femon.h
2
femon.h
@ -11,7 +11,7 @@
|
||||
|
||||
#include <vdr/plugin.h>
|
||||
|
||||
static const char VERSION[] = "1.1.2";
|
||||
static const char VERSION[] = "1.1.3";
|
||||
static const char DESCRIPTION[] = "DVB Signal Information Monitor (OSD)";
|
||||
static const char MAINMENUENTRY[] = "Signal Information";
|
||||
|
||||
|
@ -64,6 +64,7 @@ cFemonReceiver::~cFemonReceiver(void)
|
||||
Dprintf("%s()\n", __PRETTY_FUNCTION__);
|
||||
if (Running())
|
||||
Cancel(3);
|
||||
Detach();
|
||||
}
|
||||
|
||||
/* The following function originates from libdvbmpeg: */
|
||||
|
Loading…
Reference in New Issue
Block a user