summaryrefslogtreecommitdiff
path: root/scripts/kconfig/confdata.c
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/confdata.c')
-rw-r--r--scripts/kconfig/confdata.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index 958be12cd621..bd14aae1db58 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -443,6 +443,10 @@ load:
while (getline_stripped(&line, &line_asize, in) != -1) {
conf_lineno++;
+
+ if (!line[0]) /* blank line */
+ continue;
+
if (line[0] == '#') {
if (line[1] != ' ')
continue;
@@ -458,17 +462,20 @@ load:
continue;
val = "n";
- } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
+ } else {
+ if (memcmp(line, CONFIG_, strlen(CONFIG_))) {
+ conf_warning("unexpected data: %s", line);
+ continue;
+ }
+
sym_name = line + strlen(CONFIG_);
p = strchr(sym_name, '=');
- if (!p)
+ if (!p) {
+ conf_warning("unexpected data: %s", line);
continue;
+ }
*p = 0;
val = p + 1;
- } else {
- if (line[0] != '\0')
- conf_warning("unexpected data: %s", line);
- continue;
}
sym = sym_find(sym_name);