summaryrefslogtreecommitdiff
path: root/drivers/md
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-09-25 08:44:50 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2009-09-25 08:44:50 +1000
commitfa16ffae98907ee5390e8b6e27b59d7813ec71b3 (patch)
tree46b36ca4357d560fd92e1cb7a8364734a6e39530 /drivers/md
parentf45cd8d8103fc62ec520ea1fcf9d0336b765cc57 (diff)
dm-ioctl-prefer-strlcpy-over-strncpy
strlcpy() will always null terminate the string. The code should already guarantee this as the last bytes are already NULs and the string lengths were restricted before being stored in hc. Removing the '-1' becomes necessary so strlcpy() doesn't lose the last character of a maximum-length string. - agk Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-ioctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c
index a67942931582..1292c3e877b5 100644
--- a/drivers/md/dm-ioctl.c
+++ b/drivers/md/dm-ioctl.c
@@ -634,9 +634,9 @@ static struct mapped_device *find_device(struct dm_ioctl *param)
* Sneakily write in both the name and the uuid
* while we have the cell.
*/
- strncpy(param->name, hc->name, sizeof(param->name));
+ strlcpy(param->name, hc->name, sizeof(param->name));
if (hc->uuid)
- strncpy(param->uuid, hc->uuid, sizeof(param->uuid)-1);
+ strlcpy(param->uuid, hc->uuid, sizeof(param->uuid));
else
param->uuid[0] = '\0';