From 18ef0638590c8baf153d93ab7a6da7f85d07b6ef Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 11 Apr 2014 11:32:49 -0600 Subject: [PATCH] Fix potentially unterminated string after strncpy() call Signed-off-by: Jens Axboe --- diskutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diskutil.c b/diskutil.c index 5170915c..1b4accb3 100644 --- a/diskutil.c +++ b/diskutil.c @@ -297,7 +297,7 @@ static struct disk_util *disk_util_add(struct thread_data *td, int majdev, sfree(du); return NULL; } - strncpy((char *) du->dus.name, basename(path), FIO_DU_NAME_SZ); + strncpy((char *) du->dus.name, basename(path) - 1, FIO_DU_NAME_SZ); du->sysfs_root = path; du->major = majdev; du->minor = mindev; -- 2.25.1