Fix segmentation fault on function parsing error.
This commit is contained in:
parent
c4a7117704
commit
b311c854ee
@ -525,6 +525,7 @@ libab_result _parse_fun(struct parser_state* state, libab_tree** store_into) {
|
|||||||
libab_result result = LIBAB_SUCCESS;
|
libab_result result = LIBAB_SUCCESS;
|
||||||
int is_parenth, is_comma;
|
int is_parenth, is_comma;
|
||||||
libab_tree* temp;
|
libab_tree* temp;
|
||||||
|
*store_into = NULL;
|
||||||
result = _parser_consume_type(state, TOKEN_KW_FUN);
|
result = _parser_consume_type(state, TOKEN_KW_FUN);
|
||||||
if (result == LIBAB_SUCCESS) {
|
if (result == LIBAB_SUCCESS) {
|
||||||
if (_parser_is_type(state, TOKEN_ID)) {
|
if (_parser_is_type(state, TOKEN_ID)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user