projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9f08ad
)
Input: gameport - move from strlcpy with unused retval to strscpy
author
Wolfram Sang
<wsa+renesas@sang-engineering.com>
Tue, 23 Aug 2022 00:14:58 +0000
(17:14 -0700)
committer
Dmitry Torokhov
<dmitry.torokhov@gmail.com>
Tue, 23 Aug 2022 00:16:24 +0000
(17:16 -0700)
Follow the advice of the below link and prefer 'strscpy' in this
subsystem. Conversion is 1:1 because the return value is not used.
Generated by a coccinelle script.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link:
https://lore.kernel.org/r/20220818210156.8143-1-wsa+renesas@sang-engineering.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
include/linux/gameport.h
patch
|
blob
|
history
diff --git
a/include/linux/gameport.h
b/include/linux/gameport.h
index 69081d899492e6f79c701d0d3e4aa0d58a6b58c4..8c2f00018e896ddfbb385352c9686cd0df57be67 100644
(file)
--- a/
include/linux/gameport.h
+++ b/
include/linux/gameport.h
@@
-110,7
+110,7
@@
static inline void gameport_free_port(struct gameport *gameport)
static inline void gameport_set_name(struct gameport *gameport, const char *name)
{
- str
l
cpy(gameport->name, name, sizeof(gameport->name));
+ str
s
cpy(gameport->name, name, sizeof(gameport->name));
}
/*