Browse Source

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
mr10.4
Richard Fuchs 4 years ago
parent
commit
5b2fec710e
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      daemon/codec.c

+ 1
- 0
daemon/codec.c View File

@ -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]);
}


Loading…
Cancel
Save