From 5b2fec710e0436b0a36448771f05476f572b466e Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 18 Mar 2022 09:10:45 -0400 Subject: [PATCH] TT#14008 flag coverity false positive `media` is a read-only value in the struct and so does not need to be protected by the lock. Change-Id: If9a0e996ac093a755325c33fa18fbfe518635d0b --- daemon/codec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon/codec.c b/daemon/codec.c index 25e813af6..1e44e822f 100644 --- a/daemon/codec.c +++ b/daemon/codec.c @@ -910,6 +910,7 @@ static void __rtcp_timer_run(struct codec_timer *ct) { for (unsigned int u = 0; u < RTPE_NUM_SSRC_TRACKING; u++) { if (!ssrc_out[u]) // end of list break; + // coverity[use : FALSE] rtcp_send_report(media, ssrc_out[u]); }