From: Mohsin Kazmi Date: Mon, 7 Jan 2019 14:33:13 +0000 (+0100) Subject: gbp2: Fix typo in condition X-Git-Tag: v19.04-rc0~16 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F15%2F16715%2F6;p=vpp.git gbp2: Fix typo in condition Change-Id: I1b327309586c9234a22cda011953a1940d31e1ba Signed-off-by: Mohsin Kazmi --- diff --git a/src/plugins/gbp/gbp_classify.c b/src/plugins/gbp/gbp_classify.c index 8850644078c..ba6fe9bee5c 100644 --- a/src/plugins/gbp/gbp_classify.c +++ b/src/plugins/gbp/gbp_classify.c @@ -383,6 +383,8 @@ gbp_lpm_classify_inline (vlib_main_t * vm, to_next += 1; n_left_from -= 1; n_left_to_next -= 1; + ip4_0 = NULL; + ip6_0 = NULL; next0 = GPB_LPM_CLASSIFY_DROP; b0 = vlib_get_buffer (vm, bi0); @@ -441,7 +443,7 @@ gbp_lpm_classify_inline (vlib_main_t * vm, lbi0 = ip4_fib_forwarding_lookup (fib_index0, &ip4_0->src_address); } - else if (DPO_PROTO_IP4 == dproto) + else if (DPO_PROTO_IP6 == dproto) { lbi0 = ip6_fib_table_fwding_lookup (&ip6_main, fib_index0, &ip6_0->src_address);