mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
preproc: Don't access out of bound data on malformed input
There are a number of places still where we test text data which is potentially may be an empty string. This is known to happen on fuzzer input but usually doesn't take place in regular valid programs. Surely we need to revisit preprocessor code for this kind of errors. https://bugzilla.nasm.us/show_bug.cgi?id=3392525 Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
b756372b06
commit
4b5b737d49
@ -2271,8 +2271,9 @@ static int do_directive(Token *tline, char **output)
|
||||
|
||||
skip_white_(tline);
|
||||
if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
|
||||
(tline->text[1] == '%' || tline->text[1] == '$'
|
||||
|| tline->text[1] == '!'))
|
||||
(tline->text[0] && (tline->text[1] == '%' ||
|
||||
tline->text[1] == '$' ||
|
||||
tline->text[1] == '!')))
|
||||
return NO_DIRECTIVE_FOUND;
|
||||
|
||||
i = pp_token_hash(tline->text);
|
||||
|
Loading…
x
Reference in New Issue
Block a user