You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.
There are a few places in parser.c where void* pointers in the parser struct are used at the wrong indirection level. The C compiler doesn't catch these because of the opaque void* typing, but they cause crashes at run-time.
parser.c line 1254: katanaget_text(parser->scanner) // Should be *parser->scanner
parser.c line 1256: YYSTYPE * s = katanaget_lval(parser->scanner); // Should be *parser->scanner
parser.c line 1258: ...katana_get_previous_state(parser->scanner); // Should be *parser->scanner
parser.c line 1272: katanaget_text(parser->scanner) // Should be *parser->scanner
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There are a few places in parser.c where void* pointers in the parser struct are used at the wrong indirection level. The C compiler doesn't catch these because of the opaque void* typing, but they cause crashes at run-time.
The text was updated successfully, but these errors were encountered: