mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
OM2000: Fixup based on Coverity Scan suggestion
This commit fixes Coverity Scan defect: CID 151901: Insecure data handling (TAINTED_SCALAR) Passing tainted variable "tag_len" to a tainted sink. Change-Id: Ic71ed6a3bbb228bc03e95bfc4a6f5fe09cf5a021
This commit is contained in:
@@ -2438,10 +2438,10 @@ static int process_mo_state(struct gsm_bts *bts, struct om2k_decoded_msg *odm)
|
||||
}
|
||||
|
||||
/* Display fault report bits (helper function of display_fault_maps()) */
|
||||
static bool display_fault_bits(const uint8_t *vect, unsigned int len,
|
||||
static bool display_fault_bits(const uint8_t *vect, uint16_t len,
|
||||
uint8_t dei, const struct abis_om2k_mo *mo)
|
||||
{
|
||||
int i;
|
||||
uint16_t i;
|
||||
int k;
|
||||
bool faults_present = false;
|
||||
int first = 1;
|
||||
|
Reference in New Issue
Block a user