Fortunately, this was not causing any issues as it will just try
the other option branches unsuccessfuly before going to the next
config line.
err = parse_boolean(value, &config->beep);
if (EFI_ERROR(err))
log_error_stall(L"Error parsing 'beep' config option: %a", value);
+ continue;
}
if (strcmpa((CHAR8 *)"reboot-for-bitlocker", key) == 0) {
s = xstra_to_str(value);
config->console_mode = MIN(Atoi(s), (UINTN)CONSOLE_MODE_RANGE_MAX);
}
-
continue;
}
config->random_seed_mode = on ? RANDOM_SEED_ALWAYS : RANDOM_SEED_OFF;
}
+ continue;
}
}
}