From a199df49d9d0c6dafd7b4e5a48b05a57c5099250 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 9 Jan 2024 13:38:25 -0500 Subject: [PATCH] MT#55283 fix typo Check the correct field against "*" Change-Id: I12e3b91f974d3acd9798c93f10491ef6dae43c1a (cherry picked from commit 5fb74f1e436375ba53932a68cd70180aaa733d76) (cherry picked from commit db095377ee9ab6305ab80a81fc76c0a3eb8fc6b1) --- daemon/sdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/sdp.c b/daemon/sdp.c index f0042d395..8b66708ef 100644 --- a/daemon/sdp.c +++ b/daemon/sdp.c @@ -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);