mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2025-08-17 08:55:48 +00:00
Fix false analysis warning
This commit is contained in:
parent
956d6bb217
commit
f837f24998
@ -151,7 +151,7 @@ static PRTP_QUEUE_ENTRY validateQueueConstraints(PRTP_REORDER_QUEUE queue) {
|
||||
}
|
||||
|
||||
// Check that the queue's size constraint is satisfied
|
||||
if (queue->queueSize == queue->maxSize) {
|
||||
if (!needsUpdate && queue->queueSize == queue->maxSize) {
|
||||
Limelog("Discarding RTP packet after queue overgrowth");
|
||||
removeEntry(queue, queue->oldestQueuedEntry);
|
||||
free(queue->oldestQueuedEntry->packet);
|
||||
|
Loading…
x
Reference in New Issue
Block a user