From: Collin Funk Date: Sun, 1 Feb 2026 20:34:36 +0000 (-0800) Subject: stat,df: remove an unnecessary alloca X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddfe86bddf36c6a94bc98288e1d725b23d07711a;p=thirdparty%2Fcoreutils.git stat,df: remove an unnecessary alloca * src/find-mount-point.c (find_mount_point): Don't call ASSIGN_STRDUPA on the result of dir_name. --- diff --git a/src/find-mount-point.c b/src/find-mount-point.c index 6624f7f75f..f1666c93ff 100644 --- a/src/find-mount-point.c +++ b/src/find-mount-point.c @@ -52,14 +52,12 @@ find_mount_point (char const *file, struct stat const *file_stat) else /* FILE is some other kind of file; use its directory. */ { - char *xdir = dir_name (file); - char *dir; - ASSIGN_STRDUPA (dir, xdir); - free (xdir); + char *dir = dir_name (file); if (chdir (dir) < 0) { error (0, errno, _("cannot change to directory %s"), quoteaf (dir)); + free (dir); return NULL; } @@ -67,8 +65,11 @@ find_mount_point (char const *file, struct stat const *file_stat) { error (0, errno, _("cannot stat current directory (now %s)"), quoteaf (dir)); + free (dir); goto done; } + + free (dir); } /* Now walk up FILE's parents until we find another file system or /,