[dpdk-dev] [PATCH v3] net/ring: remove unnecessary NULL check

2016-11-07 Thread Thomas Monjalon
2016-11-02 14:05, Ferruh Yigit: > On 11/2/2016 1:46 PM, Mauricio Vasquez B wrote: > > Coverity detected this as an issue because internals->data will never be > > NULL, > > then the check is not necessary. > > > > Fixes: d082c0395bf6 ("ring: fix memory leak when detaching") > > Coverity issue:

[dpdk-dev] [PATCH v3] net/ring: remove unnecessary NULL check

2016-11-02 Thread Ferruh Yigit
On 11/2/2016 1:46 PM, Mauricio Vasquez B wrote: > Coverity detected this as an issue because internals->data will never be NULL, > then the check is not necessary. > > Fixes: d082c0395bf6 ("ring: fix memory leak when detaching") > Coverity issue: 137873 > > Signed-off-by: Mauricio Vasquez B >

[dpdk-dev] [PATCH v3] net/ring: remove unnecessary NULL check

2016-11-02 Thread Mauricio Vasquez B
Coverity detected this as an issue because internals->data will never be NULL, then the check is not necessary. Fixes: d082c0395bf6 ("ring: fix memory leak when detaching") Coverity issue: 137873 Signed-off-by: Mauricio Vasquez B --- drivers/net/ring/rte_eth_ring.c | 28