Fix a memory leak on OOS audio packets with a direct-submit audio player

This commit is contained in:
Cameron Gutman 2016-03-27 20:29:33 -04:00
parent ec4fc23cd7
commit 3c94da1beb

View File

@ -215,6 +215,7 @@ static void ReceiveThreadProc(void* context) {
}
else {
decodeInputData(packet);
free(packet);
}
}