From 92bbfc297c1e01037eb80a24bb42f8fe54e8a9b1 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 9 Apr 2020 14:20:52 +0000 Subject: [PATCH] udp: fix coverity warning Type: fix Signed-off-by: Florin Coras Change-Id: I8efde7a4be9b04eae7e30b153de5edab7854496b --- src/vnet/udp/udp_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vnet/udp/udp_input.c b/src/vnet/udp/udp_input.c index 0a4af605c18..95595c394e4 100644 --- a/src/vnet/udp/udp_input.c +++ b/src/vnet/udp/udp_input.c @@ -98,7 +98,7 @@ udp_trace_buffer (vlib_main_t * vm, vlib_node_runtime_t * node, t = vlib_add_trace (vm, node, b, sizeof (*t)); t->connection = s ? s->connection_index : ~0; t->disposition = error0; - t->thread_index = s->thread_index; + t->thread_index = s ? s->thread_index : vm->thread_index; } static udp_connection_t * -- 2.16.6