mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
prepoc: mmacro -- Don't left nparam_max less than nparam_min
Otherwise we hit nil dereference in best case. https://bugzilla.nasm.us/show_bug.cgi?id=3392436 Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
3144e84add
commit
c9244eaadd
@ -1938,9 +1938,11 @@ static bool if_condition(Token * tline, enum preproc_token ct)
|
||||
nasm_error(ERR_NONFATAL,
|
||||
"unable to parse parameter count `%s'",
|
||||
tline->text);
|
||||
if (searching.nparam_min > searching.nparam_max)
|
||||
if (searching.nparam_min > searching.nparam_max) {
|
||||
nasm_error(ERR_NONFATAL,
|
||||
"minimum parameter count exceeds maximum");
|
||||
searching.nparam_max = searching.nparam_min;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (tline && tok_is_(tline->next, "+")) {
|
||||
@ -2169,6 +2171,7 @@ static bool parse_mmacro_spec(Token *tline, MMacro *def, const char *directive)
|
||||
}
|
||||
if (def->nparam_min > def->nparam_max) {
|
||||
nasm_error(ERR_NONFATAL, "minimum parameter count exceeds maximum");
|
||||
def->nparam_max = def->nparam_min;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user