From defd998c42d017fa94f80c4275ac082220c14c79 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 13 Apr 2002 13:47:39 +0000 Subject: Patch from Kevin Hilman to fix potential memory corruption from long pathnames in /etc/fstab. --- util-linux/mount.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- cgit v1.2.3