aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf_dl.cpp
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-02-08 16:49:20 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-02-14 12:20:57 +0100
commitb609190369bdf96eefedacc012503d7b55823302 (patch)
tree02075e68bd029252cca08af4f98112e0637643f8 /src/tbf_dl.cpp
parent49b83ec3a350d08437522ab4c1a9d67cfb05e935 (diff)
dl tbf: initialize punct values and verify
Solves a sanitizer issue where punct2 is unset when passed to gprs_rlc_mcs_cps() and thus takes a value not defined in the enum. Change-Id: I004cbbab15e6ffa2749f4b7f1df651517c2ae693
Diffstat (limited to 'src/tbf_dl.cpp')
-rw-r--r--src/tbf_dl.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/tbf_dl.cpp b/src/tbf_dl.cpp
index c04a84e2..d871c4d7 100644
--- a/src/tbf_dl.cpp
+++ b/src/tbf_dl.cpp
@@ -627,10 +627,16 @@ struct msgb *gprs_rlcmac_dl_tbf::create_dl_acked_block(
GprsCodingScheme cs;
int bsns[ARRAY_SIZE(rlc.block_info)];
unsigned num_bsns;
- enum egprs_puncturing_values punct[ARRAY_SIZE(rlc.block_info)];
bool need_padding = false;
enum egprs_rlcmac_dl_spb spb = EGPRS_RLCMAC_DL_NO_RETX;
unsigned int spb_status = get_egprs_dl_spb_status(index);
+
+ enum egprs_puncturing_values punct[2] = {
+ EGPRS_PS_INVALID, EGPRS_PS_INVALID
+ };
+ osmo_static_assert(ARRAY_SIZE(rlc.block_info) == 2,
+ rlc_block_info_size_is_two);
+
/*
* TODO: This is an experimental work-around to put 2 BSN into
* MSC-7 to MCS-9 encoded messages. It just sends the same BSN
@@ -763,10 +769,8 @@ struct msgb *gprs_rlcmac_dl_tbf::create_dl_acked_block(
}
/* Calculate CPS only for EGPRS case */
- if (cs.isEgprs()) {
- OSMO_ASSERT(ARRAY_SIZE(punct) >= 2);
+ if (cs.isEgprs())
rlc.cps = gprs_rlc_mcs_cps(cs, punct[0], punct[1], need_padding);
- }
/* If the TBF has just started, relate frames_since_last_poll to the
* current fn */