[PATCH] depmod: Fix crash in previous commit if root is not set
- From: Colin Walters <walters verbum org>
- To: lucas De Marchi <lucas demarchi intel com>
- Cc: gnome-continuous-list gnome org
- Subject: [PATCH] depmod: Fix crash in previous commit if root is not set
- Date: Wed, 25 Feb 2015 08:22:38 -0500
[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",
--
1.8.3.1
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]