[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220301081750.2053246-1-chi.minghao@zte.com.cn>
Date: Tue, 1 Mar 2022 08:17:50 +0000
From: cgel.zte@...il.com
To: krzysztof.kozlowski@...onical.com
Cc: davem@...emloft.net, kuba@...nel.org, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org, Minghao Chi <chi.minghao@....com.cn>,
Zeal Robot <zealci@....com.cn>
Subject: [PATCH] net/nfc/nci: use memset avoid infoleaks
From: Minghao Chi (CGEL ZTE) <chi.minghao@....com.cn>
Use memset to initialize structs to preventing infoleaks
in nci_set_config
Reported-by: Zeal Robot <zealci@....com.cn>
Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@....com.cn>
---
net/nfc/nci/core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/nfc/nci/core.c b/net/nfc/nci/core.c
index d2537383a3e8..32be42be1152 100644
--- a/net/nfc/nci/core.c
+++ b/net/nfc/nci/core.c
@@ -641,6 +641,7 @@ int nci_set_config(struct nci_dev *ndev, __u8 id, size_t len, const __u8 *val)
if (!val || !len)
return 0;
+ memset(¶m, 0x0, sizeof(param));
param.id = id;
param.len = len;
param.val = val;
--
2.25.1
Powered by blists - more mailing lists