aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util-linux/mount.c3
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)
425 if (optind < argc) { 425 if (optind < argc) {
426 /* if device is a filename get its real path */ 426 /* if device is a filename get its real path */
427 if (stat(argv[optind], &statbuf) == 0) { 427 if (stat(argv[optind], &statbuf) == 0) {
428 device = simplify_path(argv[optind]); 428 char *tmp = simplify_path(argv[optind]);
429 safe_strncpy(device, tmp, PATH_MAX);
429 } else { 430 } else {
430 safe_strncpy(device, argv[optind], PATH_MAX); 431 safe_strncpy(device, argv[optind], PATH_MAX);
431 } 432 }