public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH linux-next] staging: ks7010: use strscpy() to instead of strncpy()
@ 2022-12-26 11:03 yang.yang29
  2022-12-29  9:45 ` Dan Carpenter
  0 siblings, 1 reply; 5+ messages in thread
From: yang.yang29 @ 2022-12-26 11:03 UTC (permalink / raw)
  To: gustavoars; +Cc: linux-staging, linux-kernel, yang.yang29, xu.panda

From: Xu Panda <xu.panda@zte.com.cn>

The implementation of strscpy() is more robust and safer.
That's now the recommended way to copy NUL-terminated strings.

Signed-off-by: Xu Panda <xu.panda@zte.com.cn>
Signed-off-by: Yang Yang <yang.yang29@zte.com>
---
 drivers/staging/ks7010/ks_wlan_net.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c
index 044c807ca022..e03c87f0bfe7 100644
--- a/drivers/staging/ks7010/ks_wlan_net.c
+++ b/drivers/staging/ks7010/ks_wlan_net.c
@@ -382,8 +382,7 @@ static int ks_wlan_get_nick(struct net_device *dev,
 		return -EPERM;

 	/* for SLEEP MODE */
-	strncpy(extra, priv->nick, 16);
-	extra[16] = '\0';
+	strscpy(extra, priv->nick, 17);
 	dwrq->data.length = strlen(extra) + 1;

 	return 0;
-- 
2.15.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-12-29 10:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-26 11:03 [PATCH linux-next] staging: ks7010: use strscpy() to instead of strncpy() yang.yang29
2022-12-29  9:45 ` Dan Carpenter
2022-12-29  9:49   ` Dan Carpenter
2022-12-29  9:54   ` Dan Carpenter
2022-12-29  9:58     ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox