Fix coverity issue for NSH plugin
[vpp.git] / src / plugins / gbp / gbp_classify.c
index fdb1e9f..3dc6699 100644 (file)
@@ -75,6 +75,7 @@ gbp_classify_inline (vlib_main_t * vm,
       while (n_left_from > 0 && n_left_to_next > 0)
        {
          u32 next0, bi0, src_epg, sw_if_index0;
+         const gbp_endpoint_t *gep0;
          vlib_buffer_t *b0;
 
          bi0 = from[0];
@@ -97,11 +98,12 @@ gbp_classify_inline (vlib_main_t * vm,
            }
          else
            {
-             src_epg = gbp_port_to_epg (sw_if_index0);
+             gep0 = gbp_endpoint_get_itf (sw_if_index0);
+             src_epg = gep0->ge_epg_id;
              if (is_l3)
                {
                  /*
-                  * Go straight to looukp, do not pass go, do not collect $200
+                  * Go straight to lookup, do not pass go, do not collect $200
                   */
                  next0 = 0;
                }