[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [patch 1/3] dm: strncpy does not null terminate string
- From: akpm linux-foundation org
- To: agk redhat com
- Cc: dm-devel redhat com, roel kluin gmail com, akpm linux-foundation org
- Subject: [dm-devel] [patch 1/3] dm: strncpy does not null terminate string
- Date: Fri, 18 Sep 2009 12:45:07 -0700
From: Roel Kluin <roel kluin gmail com>
strlcpy() will always null terminate the string.
Signed-off-by: Roel Kluin <roel kluin gmail com>
Cc: Alasdair G Kergon <agk redhat com>
Signed-off-by: Andrew Morton <akpm linux-foundation org>
---
drivers/md/dm-ioctl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -puN drivers/md/dm-ioctl.c~dm-strncpy-does-not-null-terminate-string drivers/md/dm-ioctl.c
--- a/drivers/md/dm-ioctl.c~dm-strncpy-does-not-null-terminate-string
+++ a/drivers/md/dm-ioctl.c
@@ -634,9 +634,9 @@ static struct mapped_device *find_device
* 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';
_
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]