Skip to content

Commit

Permalink
peep.c - ensure deferred_queue is initialized before use
Browse files Browse the repository at this point in the history
  • Loading branch information
demerphq committed Mar 21, 2023
1 parent 1bfa8f4 commit b01dd2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peep.c
Expand Up @@ -2690,7 +2690,7 @@ Perl_rpeep(pTHX_ OP *o)
{
OP* oldop = NULL;
OP* oldoldop = NULL;
OP** defer_queue[MAX_DEFERRED]; /* small queue of deferred branches */
OP** defer_queue[MAX_DEFERRED] = { NULL, NULL, NULL, NULL }; /* small queue of deferred branches */
int defer_base = 0;
int defer_ix = -1;

Expand Down

0 comments on commit b01dd2f

Please sign in to comment.