Skip to content

Commit

Permalink
Another fix for x86 indirect call rewriter
Browse files Browse the repository at this point in the history
  • Loading branch information
zyedidia committed Jun 1, 2024
1 parent fce1751 commit d5a08c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lfi-leg/lfi-amd64.leg
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ NAME = < ID > - { $$ = (Transform) { .val = strndup(yytext, yyleng) } }

IMM = < IMM_RAW > - { $$ = (Transform) { .val = strndup(yytext, yyleng) } }

IMM_VAR = < ([-+a-zA-Z0-9_]+ | BALANCED_RAW) > - { $$ = (Transform) { .val = strndup(yytext, yyleng) } }
IMM_VAR = < ([-+a-zA-Z0-9_.]+ | BALANCED_RAW) > - { $$ = (Transform) { .val = strndup(yytext, yyleng) } }

IMM_RAW = (
('$' -)?
Expand Down

0 comments on commit d5a08c0

Please sign in to comment.