Re: [dpdk-dev] [PATCH v2 2/4] net/mlx5: fix missing validation of null pointer

2019-05-02 Thread Yongseok Koh
> On May 2, 2019, at 8:01 AM, Dekel Peled wrote: > > Function mlx5_rxq_ibv_release() is called in several places. > Before each call except one, the input parameter is validated to make > sure it is not null. > > This patch adds the missing validation where it is missing. > > Fixes: af4f09f28

[dpdk-dev] [PATCH v2 2/4] net/mlx5: fix missing validation of null pointer

2019-05-02 Thread Dekel Peled
Function mlx5_rxq_ibv_release() is called in several places. Before each call except one, the input parameter is validated to make sure it is not null. This patch adds the missing validation where it is missing. Fixes: af4f09f28294 ("net/mlx5: prefix all functions with mlx5") Cc: sta...@dpdk.org