From d26fc6baee7be19e4301b55bcb16b66d8a82a6a6 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 19 Mar 2025 08:46:42 -0400 Subject: [PATCH] MT#59962 SBCCallProfile: fix typo Compare the correct iterators. Change-Id: I8396d371a0a33c0e1373b4fd4585209b5093a081 Warned-by: Coverity --- apps/sbc/SBCCallProfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sbc/SBCCallProfile.cpp b/apps/sbc/SBCCallProfile.cpp index 226e8291..244c3e27 100644 --- a/apps/sbc/SBCCallProfile.cpp +++ b/apps/sbc/SBCCallProfile.cpp @@ -123,7 +123,7 @@ static string payload2str(const SdpPayload &p); else { \ map::iterator name_it = \ AmConfig::SIP_If_names.find(what); \ - if (name_it != AmConfig::RTP_If_names.end()) \ + if (name_it != AmConfig::SIP_If_names.end()) \ iface = name_it->second; \ else { \ ERROR("selected " #what " '%s' does not exist as a signaling" \