Browse Source

MT#55283 fix typo

Check the correct field against "*"

Change-Id: I12e3b91f974d3acd9798c93f10491ef6dae43c1a
(cherry picked from commit 5fb74f1e43)
(cherry picked from commit db095377ee)
pull/1887/head
Richard Fuchs 2 years ago
parent
commit
a199df49d9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/sdp.c

+ 1
- 1
daemon/sdp.c View File

@ -890,7 +890,7 @@ static int parse_attribute_rtcp_fb(struct sdp_attribute *output) {
EXTRACT_TOKEN(rtcp_fb.payload_type_str);
a->value = *value_str;
if (!str_cmp(&output->rtcp_fb.value, "*"))
if (!str_cmp(&a->payload_type_str, "*"))
a->payload_type = -1;
else {
a->payload_type = str_to_i(&a->payload_type_str, -1);


Loading…
Cancel
Save