mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
properly shutdown IGMP timeout handler thread when the plugin is stopped.
Fixes occasional segfaults on VDR exit.
This commit is contained in:
parent
30674fb6c8
commit
f9224d0618
2
HISTORY
2
HISTORY
@ -1,6 +1,8 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- properly shutdown IGMP timeout handler thread when the plugin is stopped.
|
||||||
|
Fixes occasional segfaults on VDR exit.
|
||||||
- fixed memory leak in libdvbmpeg read_pes (thanks to Ville Skyttä)
|
- fixed memory leak in libdvbmpeg read_pes (thanks to Ville Skyttä)
|
||||||
- dropped several unused functions in libdvbmpeg
|
- dropped several unused functions in libdvbmpeg
|
||||||
- restricted VTP command RENR to liemikuutio patch < 1.32. Build fails with
|
- restricted VTP command RENR to liemikuutio patch < 1.32. Build fails with
|
||||||
|
@ -144,7 +144,9 @@ void cComponentIGMP::Destruct(void)
|
|||||||
{
|
{
|
||||||
if (m_MaxChannelNumber > 0)
|
if (m_MaxChannelNumber > 0)
|
||||||
{
|
{
|
||||||
Cancel(3);
|
Cancel(-1);
|
||||||
|
m_CondWait.Signal();
|
||||||
|
Cancel(2);
|
||||||
for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel))
|
for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel))
|
||||||
{
|
{
|
||||||
if (channel->GroupSep())
|
if (channel->GroupSep())
|
||||||
|
Loading…
Reference in New Issue
Block a user