diff options
author | Florin Coras <fcoras@cisco.com> | 2021-04-13 15:56:41 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-04-14 10:26:48 +0000 |
commit | 27d87d32441e717b1b3b1569620d19a4677c9fbb (patch) | |
tree | 120ae846222f29fdd651cd9fa8fbdeb36b63952b | |
parent | 91f102ed84dac1591e08587facf71dc386b7c087 (diff) |
tls: fix coverity warning
Type: fix
Avoid complaint that we're potentially incrementing ii which could be
null.
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I8511c07b1c2f260cc0e526d9aefeb4a051d98edf
-rw-r--r-- | src/plugins/tlsopenssl/tls_async.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/tlsopenssl/tls_async.c b/src/plugins/tlsopenssl/tls_async.c index 49987baef16..89b4f77e331 100644 --- a/src/plugins/tlsopenssl/tls_async.c +++ b/src/plugins/tlsopenssl/tls_async.c @@ -417,7 +417,7 @@ openssl_async_node_enable_disable (u8 is_en) foreach_vlib_main () { - if (have_workers && ii != 0) + if (have_workers && this_vlib_main->thread_index) { vlib_node_set_state (this_vlib_main, tls_async_process_node.index, state); |