projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b39b732
)
dm ioctl: prefer strscpy() instead of strlcpy()
author
Heinz Mauelshagen
<heinzm@redhat.com>
Tue, 7 Feb 2023 22:04:01 +0000
(23:04 +0100)
committer
Mike Snitzer
<snitzer@kernel.org>
Tue, 14 Feb 2023 19:23:07 +0000
(14:23 -0500)
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm-ioctl.c
patch
|
blob
|
history
diff --git
a/drivers/md/dm-ioctl.c
b/drivers/md/dm-ioctl.c
index 9a19bcd8fcfe7b665d629cbf9071c725889304f8..f34d36a4b4a1c085d366e33c7117b03dce9517c0 100644
(file)
--- a/
drivers/md/dm-ioctl.c
+++ b/
drivers/md/dm-ioctl.c
@@
-937,9
+937,9
@@
static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param)
* Sneakily write in both the name and the uuid
* while we have the cell.
*/
- str
l
cpy(param->name, hc->name, sizeof(param->name));
+ str
s
cpy(param->name, hc->name, sizeof(param->name));
if (hc->uuid)
- str
l
cpy(param->uuid, hc->uuid, sizeof(param->uuid));
+ str
s
cpy(param->uuid, hc->uuid, sizeof(param->uuid));
else
param->uuid[0] = '\0';