From fd263b0dfd0ec44216c607b96e167f1027e404c6 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 4 Mar 2016 18:24:50 +0100 Subject: tbf: Fix copy and paste in the set_mode routine This is the second attempt to fix what looks like a copy and paste issue. The code assigns m_current_cs_ul and then compares the _dl variant, then assigns m_current_cs_ul with a default value. It seems to indicate that _ul should be used. Fixes: Coverity: CID 1351733 --- src/gprs_ms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gprs_ms.cpp b/src/gprs_ms.cpp index 78f03f84..4296fd33 100644 --- a/src/gprs_ms.cpp +++ b/src/gprs_ms.cpp @@ -237,7 +237,7 @@ void GprsMs::set_mode(GprsCodingScheme::Mode mode) if (!m_current_cs_ul.isEgprs()) { m_current_cs_ul = GprsCodingScheme::getEgprsByNum( m_bts->bts_data()->initial_mcs_ul); - if (!m_current_cs_dl.isValid()) + if (!m_current_cs_ul.isValid()) m_current_cs_ul = GprsCodingScheme::MCS1; } if (!m_current_cs_dl.isEgprs()) { -- cgit v1.2.3