[PATCH 0/3] Use kzfree instead of memset() + kfree()
From: zhong jiang
Date: Tue Sep 03 2019 - 23:04:31 EST
th the help of Coccinelle. We find some place to replace.
@@
expression M, S;
@@
- memset(M, 0, S);
- kfree(M);
+ kzfree(M);
zhong jiang (3):
crypto: marvell: Use kzfree rather than its implementation
iommu/pamu: Use kzfree rather than its implementation
Staging: rtl8723bs: Use kzfree rather than its implementation
drivers/crypto/marvell/hash.c | 3 +--
drivers/iommu/fsl_pamu.c | 6 ++----
drivers/staging/rtl8723bs/core/rtw_security.c | 3 +--
3 files changed, 4 insertions(+), 8 deletions(-)
--
1.7.12.4