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:
parent
c9898bfbfd
commit
3d1efe7a80
@ -35,6 +35,7 @@ cSatipMsearch::cSatipMsearch(cSatipDiscoverIf &discoverP)
|
|||||||
|
|
||||||
cSatipMsearch::~cSatipMsearch()
|
cSatipMsearch::~cSatipMsearch()
|
||||||
{
|
{
|
||||||
|
FREE_POINTER(bufferM);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cSatipMsearch::Probe(void)
|
void cSatipMsearch::Probe(void)
|
||||||
|
2
rtcp.c
2
rtcp.c
@ -25,7 +25,7 @@ cSatipRtcp::cSatipRtcp(cSatipTunerIf &tunerP)
|
|||||||
cSatipRtcp::~cSatipRtcp()
|
cSatipRtcp::~cSatipRtcp()
|
||||||
{
|
{
|
||||||
debug1("%s [device %d]", __PRETTY_FUNCTION__, tunerM.GetId());
|
debug1("%s [device %d]", __PRETTY_FUNCTION__, tunerM.GetId());
|
||||||
DELETE_POINTER(bufferM);
|
FREE_POINTER(bufferM);
|
||||||
}
|
}
|
||||||
|
|
||||||
int cSatipRtcp::GetFd(void)
|
int cSatipRtcp::GetFd(void)
|
||||||
|
2
rtp.c
2
rtp.c
@ -29,7 +29,7 @@ cSatipRtp::cSatipRtp(cSatipTunerIf &tunerP)
|
|||||||
cSatipRtp::~cSatipRtp()
|
cSatipRtp::~cSatipRtp()
|
||||||
{
|
{
|
||||||
debug1("%s [device %d]", __PRETTY_FUNCTION__, tunerM.GetId());
|
debug1("%s [device %d]", __PRETTY_FUNCTION__, tunerM.GetId());
|
||||||
DELETE_POINTER(bufferM);
|
FREE_POINTER(bufferM);
|
||||||
}
|
}
|
||||||
|
|
||||||
int cSatipRtp::GetFd(void)
|
int cSatipRtp::GetFd(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user