1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

Fixed freeing some memory.

This commit is contained in:
Rolf Ahrenberg 2015-01-21 22:40:24 +02:00
parent c9898bfbfd
commit 3d1efe7a80
3 changed files with 3 additions and 2 deletions

View File

@ -35,6 +35,7 @@ cSatipMsearch::cSatipMsearch(cSatipDiscoverIf &discoverP)
cSatipMsearch::~cSatipMsearch()
{
FREE_POINTER(bufferM);
}
void cSatipMsearch::Probe(void)

2
rtcp.c
View File

@ -25,7 +25,7 @@ cSatipRtcp::cSatipRtcp(cSatipTunerIf &tunerP)
cSatipRtcp::~cSatipRtcp()
{
debug1("%s [device %d]", __PRETTY_FUNCTION__, tunerM.GetId());
DELETE_POINTER(bufferM);
FREE_POINTER(bufferM);
}
int cSatipRtcp::GetFd(void)

2
rtp.c
View File

@ -29,7 +29,7 @@ cSatipRtp::cSatipRtp(cSatipTunerIf &tunerP)
cSatipRtp::~cSatipRtp()
{
debug1("%s [device %d]", __PRETTY_FUNCTION__, tunerM.GetId());
DELETE_POINTER(bufferM);
FREE_POINTER(bufferM);
}
int cSatipRtp::GetFd(void)