aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/zconf.l
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/zconf.l')
-rw-r--r--scripts/kconfig/zconf.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/zconf.l
index cfa46077c6b4..187d38ccadd5 100644
--- a/scripts/kconfig/zconf.l
+++ b/scripts/kconfig/zconf.l
@@ -265,7 +265,7 @@ FILE *zconf_fopen(const char *name)
265 FILE *f; 265 FILE *f;
266 266
267 f = fopen(name, "r"); 267 f = fopen(name, "r");
268 if (!f && name[0] != '/') { 268 if (!f && name != NULL && name[0] != '/') {
269 env = getenv(SRCTREE); 269 env = getenv(SRCTREE);
270 if (env) { 270 if (env) {
271 sprintf(fullname, "%s/%s", env, name); 271 sprintf(fullname, "%s/%s", env, name);