Re: [dpdk-dev] [PATCH] crypto/openssl: Remove if condition prior to BN_free

2018-12-18 Thread Akhil Goyal
On 11/23/2018 5:40 PM, Akash Saxena wrote: > Remove if() condition prior to calling BN_free() as > BN_free(a) does nothing if a is NULL. > > Signed-off-by: Akash Saxena > Signed-off-by: Shally Verma > --- > Applied to dpdk-next-crypto Thanks

[dpdk-dev] [PATCH] crypto/openssl: Remove if condition prior to BN_free

2018-11-23 Thread Akash Saxena
Remove if() condition prior to calling BN_free() as BN_free(a) does nothing if a is NULL. Signed-off-by: Akash Saxena Signed-off-by: Shally Verma --- drivers/crypto/openssl/rte_openssl_pmd.c | 21 + drivers/crypto/openssl/rte_openssl_pmd_ops.c | 45 ++--