Fix memory leak in audio stream code
This commit is contained in:
parent
e27218f56e
commit
0f586ce05f
1 changed files with 5 additions and 2 deletions
|
|
@ -112,12 +112,12 @@ static void DecoderThreadProc(void* context) {
|
|||
|
||||
if (length < sizeof(RTP_PACKET)) {
|
||||
Limelog("Runt packet\n");
|
||||
continue;
|
||||
goto freeandcontinue;
|
||||
}
|
||||
|
||||
if (rtp->packetType != 97) {
|
||||
// Not audio
|
||||
continue;
|
||||
goto freeandcontinue;
|
||||
}
|
||||
|
||||
rtp->sequenceNumber = htons(rtp->sequenceNumber);
|
||||
|
|
@ -131,6 +131,9 @@ static void DecoderThreadProc(void* context) {
|
|||
lastSeq = rtp->sequenceNumber;
|
||||
|
||||
callbacks.decodeAndPlaySample((char *) (rtp + 1), length - sizeof(*rtp));
|
||||
|
||||
freeandcontinue:
|
||||
free(data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue