diff --git a/[refs] b/[refs] index 291c6923cfa9..146b85358c4f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 5efe241eac80bb534fed0a965684c2d7527af5bf +refs/heads/master: 9f420bf0f4a74e404b73b42b7fc3c85c20c64ea7 diff --git a/trunk/scripts/kconfig/conf.c b/trunk/scripts/kconfig/conf.c index 0fdda9169308..0dc4a2c779b1 100644 --- a/trunk/scripts/kconfig/conf.c +++ b/trunk/scripts/kconfig/conf.c @@ -574,7 +574,9 @@ int main(int ac, char **av) case alldefconfig: case randconfig: name = getenv("KCONFIG_ALLCONFIG"); - if (name && (strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) { + if (!name) + break; + if ((strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) { if (conf_read_simple(name, S_DEF_USER)) { fprintf(stderr, _("*** Can't read seed configuration \"%s\"!\n"),