prevent buffer underflows with empty lines
This commit is contained in:
parent
c255f8b492
commit
40ae9b5617
@ -390,7 +390,7 @@ static int conf_choice(struct menu *menu)
|
||||
}
|
||||
if (!child)
|
||||
continue;
|
||||
if (line[strlen(line) - 1] == '?') {
|
||||
if (strlen(line) > 0 && line[strlen(line) - 1] == '?') {
|
||||
printf("\n%s\n", child->sym->help ?
|
||||
child->sym->help : nohelp_text);
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user