diff options
-rw-r--r-- | util-linux/mount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 382ad832f..79335669d 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -425,7 +425,8 @@ extern int mount_main(int argc, char **argv) if (optind < argc) { /* if device is a filename get its real path */ if (stat(argv[optind], &statbuf) == 0) { - device = simplify_path(argv[optind]); + char *tmp = simplify_path(argv[optind]); + safe_strncpy(device, tmp, PATH_MAX); } else { safe_strncpy(device, argv[optind], PATH_MAX); } |