diff options
author | Eyal Bari <ebari@cisco.com> | 2018-07-22 12:45:15 +0300 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2018-07-23 15:37:01 +0000 |
commit | cd30774fa9280736ffaea3e9a51948593e8eebc2 (patch) | |
tree | 3e9e17648b67bd344af21739d8f24504d3d9fccd /src/plugins/dpdk | |
parent | b7d41fc18e43e4b839b6297d776c4a3e31fd1fb6 (diff) |
fix vector index range checks
Change-Id: I63c36644c9d93f2c3ec6606ca0205b407499de4e
Signed-off-by: Eyal Bari <ebari@cisco.com>
Diffstat (limited to 'src/plugins/dpdk')
-rw-r--r-- | src/plugins/dpdk/device/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/dpdk/device/flow.c b/src/plugins/dpdk/device/flow.c index 31818f1c447..351390b6d34 100644 --- a/src/plugins/dpdk/device/flow.c +++ b/src/plugins/dpdk/device/flow.c @@ -368,7 +368,7 @@ format_dpdk_flow (u8 * s, va_list * args) return s; } - if (private_data > vec_len (xd->flow_entries)) + if (private_data >= vec_len (xd->flow_entries)) return format (s, "unknown flow"); fe = vec_elt_at_index (xd->flow_entries, private_data); |