test/latency: fix loop boundary
Caught running ASAN. lat_stats_strings[] is an array containing NUM_STATS strings. Fixes: 1e3676a06e4c ("test/latency: add unit tests for latencystats library") Cc: stable@dpdk.org Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Reshma Pattan <reshma.pattan@intel.com>
This commit is contained in:
parent
c6c865d7e2
commit
cb3dd14c77
@ -80,7 +80,7 @@ static int test_latencystats_get_names(void)
|
||||
/* Success Test: Valid names and size */
|
||||
size = NUM_STATS;
|
||||
ret = rte_latencystats_get_names(names, size);
|
||||
for (i = 0; i <= NUM_STATS; i++) {
|
||||
for (i = 0; i < NUM_STATS; i++) {
|
||||
if (strcmp(lat_stats_strings[i].name, names[i].name) == 0)
|
||||
printf(" %s\n", names[i].name);
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user