From f535cc84c7090ba1340d756ad2b03b13572aeadf Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 8 Nov 2018 13:36:55 +0100 Subject: abis_nm: parse_attr_resp_info_unreported: Fix offset calculation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See following specs for related information: * 3GPP TS 52.021 §8.11.3 Get Attribute Response * 3GPP TS 52.021 §9.4.64 Get Attribute Response Info Related: OS#3624 Change-Id: Ie61d70bc28427d5d879638516a36f590ce98bdc7 --- src/osmo-bsc/abis_nm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c index d147606ac..8f5a51455 100644 --- a/src/osmo-bsc/abis_nm.c +++ b/src/osmo-bsc/abis_nm.c @@ -495,7 +495,7 @@ static inline const uint8_t *parse_attr_resp_info_unreported(uint8_t bts_nr, con /* the data starts right after the list of unreported attributes + space for length of that list */ if (out_len) - *out_len = ari_len - (num_unreported + 2); + *out_len = ari_len - (num_unreported + 1); return ari + num_unreported + 1; /* we have to account for 1st byte with number of unreported attributes */ } -- cgit v1.2.3