Merge in SNORT/snort3 from ~ALLEWI/snort3:multiple_reputation_entries to master
Squashed commit of the following:
commit
e336be1e0cbde17d4fcc00605ccfacfa4147fd48
Author: albert lewis <allewi@cisco.com>
Date: Mon Oct 3 12:56:51 2022 -0400
reputation: fix for array indexing error when searching for reputation file entries
int i;
for (i = 0; i < NUM_INDEX_PER_ENTRY; i++)
{
- int list_index = rep_info->list_indexes[i];
+ uint8_t list_index = rep_info->list_indexes[i];
if (!list_index)
break;
list_index--;