app/bbdev: fix out-of-bounds read in vector array
Coverity issue: 257033 Fixes: f714a18885a6 ("app/testbbdev: add test application for bbdev") Signed-off-by: Amr Mokhtar <amr.mokhtar@intel.com>
This commit is contained in:
parent
c3aaec2633
commit
218203502c
@ -288,7 +288,7 @@ parse_data_entry(const char *key_token, char *token,
|
||||
struct op_data_buf *op_data;
|
||||
unsigned int *nb_ops;
|
||||
|
||||
if (type > DATA_NUM_TYPES) {
|
||||
if (type >= DATA_NUM_TYPES) {
|
||||
printf("Unknown op type: %d!\n", type);
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user