net/ice/base: fix memory leak

Need to free new ice_vsig_prof if no valid ptype can be found.

Fixes: d935fb5bb091 ("net/ice/base: fix packet type size")
Cc: stable@dpdk.org

Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com>
Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
Acked-by: Xiaolong Ye <xiaolong.ye@intel.com>
This commit is contained in:
Qi Zhang 2019-08-29 10:36:12 +08:00 committed by Ferruh Yigit
parent 2db7c617f6
commit 348ea028ea

View File

@ -4918,8 +4918,10 @@ ice_add_prof_to_lst(struct ice_hw *hw, enum ice_block blk,
p->tcam[i].prof_id = map->prof_id;
p->tcam[i].tcam_idx = ICE_INVALID_TCAM;
if (ice_ptg_find_ptype(hw, blk, map->ptype[i], &ptg))
if (ice_ptg_find_ptype(hw, blk, map->ptype[i], &ptg)) {
ice_free(hw, p);
return ICE_ERR_CFG;
}
p->tcam[i].ptg = ptg;
}