diff options
Diffstat (limited to 'src/plugins/gbp/gbp_classify.c')
-rw-r--r-- | src/plugins/gbp/gbp_classify.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |