From: Andrew Yourtchenko Date: Wed, 31 Aug 2022 14:16:10 +0000 (+0000) Subject: nat: fix coverity 249178 X-Git-Tag: v23.02-rc0~45 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=ab46a3c97364757d333119bbd5c48ea9beaebb70;p=vpp.git nat: fix coverity 249178 Zero-initialize the variable Type: fix Signed-off-by: Andrew Yourtchenko Change-Id: I4ee127ac3e2a3beffa11bbc96db1f3254b3f7c5d --- diff --git a/src/plugins/nat/nat44-ed/nat44_ed_in2out.c b/src/plugins/nat/nat44-ed/nat44_ed_in2out.c index 179405e72b7..4eced06aa47 100644 --- a/src/plugins/nat/nat44-ed/nat44_ed_in2out.c +++ b/src/plugins/nat/nat44-ed/nat44_ed_in2out.c @@ -1346,7 +1346,7 @@ nat44_ed_in2out_slow_path_node_fn_inline (vlib_main_t *vm, udp_header_t *udp0; icmp46_header_t *icmp0; snat_session_t *s0 = 0; - clib_bihash_kv_16_8_t kv0, value0; + clib_bihash_kv_16_8_t kv0 = { 0 }, value0; int translation_error = NAT_ED_TRNSL_ERR_SUCCESS; b0 = *b;