From 0b3aef23b8e5cc935caaec6230782553c1a4ca95 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 25 Feb 2015 08:22:38 -0500 Subject: [PATCH] depmod: Fix crash in previous commit if root is not set [This fixes http://build.gnome.org/continuous/buildmaster/builds/2015/02/25/31/build/output.txt ] The variable we're reading here is "root", not "optarg" which is only valid inside the getopt call. --- tools/depmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/depmod.c b/tools/depmod.c index a4a7479..18aab5d 100644 --- a/tools/depmod.c +++ b/tools/depmod.c @@ -2484,7 +2484,7 @@ static int do_depmod(int argc, char *argv[]) } if (root) - root = path_make_absolute_cwd(optarg); + root = path_make_absolute_cwd(root); cfg.dirnamelen = snprintf(cfg.dirname, PATH_MAX, "%s/lib/modules/%s", -- 2.7.4