We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 425999e commit aa413a2Copy full SHA for aa413a2
src/parser.c
@@ -8229,6 +8229,8 @@ struct balanced_token_sequence* _Owner _Opt balanced_token_sequence_opt(struct p
8229
if(ctx->current->type != TK_COMMA)
8230
{
8231
struct balanced_token* new_token = calloc(1, sizeof(struct balanced_token));
8232
+ if (new_token == NULL) throw;
8233
+
8234
new_token->token = ctx->current;
8235
if(p_balanced_token_sequence->tail == NULL)
8236
0 commit comments