[dpdk-dev] [PATCH 05/10] app/test: add null pointer check of memory allocation

2021-04-19 Thread Min Hu (Connor)
From: HongBo Zheng The rte_zmalloc is called in test_crc_calc without null pointer check. This patch adds null pointer checks on return value of rte_zmalloc. Fixes: 9c77b848b1c1 ("test: add CRC computation") Cc: sta...@dpdk.org Signed-off-by: HongBo Zheng Signed-off-by: Min Hu (Connor) --- a

Re: [dpdk-dev] [PATCH 05/10] app/test: add null pointer check of memory allocation

2022-06-26 Thread Thomas Monjalon
19/04/2021 15:34, Min Hu (Connor): > From: HongBo Zheng > > The rte_zmalloc is called in test_crc_calc without null pointer > check. This patch adds null pointer checks on return value of > rte_zmalloc. > > Fixes: 9c77b848b1c1 ("test: add CRC computation") > Cc: sta...@dpdk.org > > Signed-off-b