don't double-free OPs on blead [#83439]
Lukas Mai [Sat, 2 Mar 2013 23:19:59 +0000 (00:19 +0100)]
Starting with 5.17.2 all newly allocated OPs are implicitly registered
with the current CV being compiled (PL_compcv). If an error is thrown
during compilation, these OPs are freed with the CV. This results in a
double-free if we also track and free OPs ourselves.

Solution: Check for this case and don't call op_free() in this
situation.

Parameters.xs

index e5bbfba..b6fe39a 100644 (file)
@@ -219,10 +219,49 @@ static int kw_flags(pTHX_ Sentinel sen, const char *kw_ptr, STRLEN kw_len, KWSpe
 }
 
 
-static void free_ptr_op_void(pTHX_ void *vp) {
-       OP **pp = vp;
-       op_free(*pp);
-       Safefree(pp);
+#if HAVE_PERL_VERSION(5, 17, 2)
+ #define MY_OP_SLABBED(O) ((O)->op_slabbed)
+#else
+ #define MY_OP_SLABBED(O) 0
+#endif
+
+DEFSTRUCT(OpGuard) {
+       OP *op;
+       bool needs_freed;
+};
+
+static void op_guard_init(OpGuard *p) {
+       p->op = NULL;
+       p->needs_freed = FALSE;
+}
+
+static OpGuard op_guard_transfer(OpGuard *p) {
+       OpGuard r = *p;
+       op_guard_init(p);
+       return r;
+}
+
+static OP *op_guard_relinquish(OpGuard *p) {
+       OP *o = p->op;
+       op_guard_init(p);
+       return o;
+}
+
+static void op_guard_update(OpGuard *p, OP *o) {
+       p->op = o;
+       p->needs_freed = o && !MY_OP_SLABBED(o);
+}
+
+static void op_guard_clear(pTHX_ OpGuard *p) {
+       if (p->needs_freed) {
+               op_free(p->op);
+       }
+}
+
+static void free_op_guard_void(pTHX_ void *vp) {
+       OpGuard *p = vp;
+       op_guard_clear(aTHX_ p);
+       Safefree(p);
 }
 
 static void free_op_void(pTHX_ void *vp) {
@@ -569,7 +608,7 @@ DEFSTRUCT(Param) {
 
 DEFSTRUCT(ParamInit) {
        Param param;
-       OP *init;
+       OpGuard init;
 };
 
 #define VEC(B) B ## _Vec
@@ -648,10 +687,7 @@ static void p_clear(pTHX_ Param *p) {
 
 static void pi_clear(pTHX_ ParamInit *pi) {
        p_clear(aTHX_ &pi->param);
-       if (pi->init) {
-               op_free(pi->init);
-               pi->init = NULL;
-       }
+       op_guard_clear(aTHX_ &pi->init);
 }
 
 DEFVECTOR_CLEAR(pv_clear, Param, p_clear);
@@ -779,20 +815,17 @@ enum {
        PARAM_NAMED    = 0x02
 };
 
-/* *pinit must be NULL on entry.
- * caller must free *pinit on error.
- */
 static PADOFFSET parse_param(
        pTHX_
        Sentinel sen,
        const SV *declarator, const KWSpec *spec, ParamSpec *param_spec,
-       int *pflags, SV **pname, OP **pinit, SV **ptype
+       int *pflags, SV **pname, OpGuard *ginit, SV **ptype
 ) {
        I32 c;
        char sigil;
        SV *name;
 
-       assert(!*pinit);
+       assert(!ginit->op);
        *pflags = 0;
        *ptype = NULL;
 
@@ -813,7 +846,11 @@ static PADOFFSET parse_param(
                        if (!(expr = parse_fullexpr(PARSE_OPTIONAL))) {
                                croak("In %"SVf": invalid type expression", SVfARG(declarator));
                        }
-                       expr_sentinel = sentinel_register(sen, expr, free_op_void);
+                       if (MY_OP_SLABBED(expr)) {
+                               expr_sentinel = NULL;
+                       } else {
+                               expr_sentinel = sentinel_register(sen, expr, free_op_void);
+                       }
 
                        lex_read_space(0);
                        c = lex_peek_unichar(0);
@@ -824,7 +861,9 @@ static PADOFFSET parse_param(
                        lex_read_space(0);
 
                        SvREFCNT_inc_simple_void(PL_compcv);
-                       sentinel_disarm(expr_sentinel);
+                       if (expr_sentinel) {
+                               sentinel_disarm(expr_sentinel);
+                       }
                        *ptype = my_eval(aTHX_ sen, floor, expr);
                        *ptype = reify_type(aTHX_ sen, declarator, *ptype);
                        if (!sv_isobject(*ptype)) {
@@ -882,7 +921,7 @@ static PADOFFSET parse_param(
                        param_spec->invocant.padoff = pad_add_name_sv(param_spec->invocant.name, 0, NULL, NULL);
                }
 
-               *pinit = parse_termexpr(0);
+               op_guard_update(ginit, parse_termexpr(0));
 
                lex_read_space(0);
                c = lex_peek_unichar(0);
@@ -1136,9 +1175,10 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
        I32 floor_ix;
        int save_ix;
        SV *saw_name;
-       OP **prelude_sentinel;
+       OpGuard *prelude_sentinel;
        SV *proto;
-       OP **attrs_sentinel, *body;
+       OpGuard *attrs_sentinel;
+       OP *body;
        unsigned builtin_attrs;
        I32 c;
 
@@ -1185,20 +1225,20 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
        save_ix = S_block_start(aTHX_ TRUE);
 
        /* initialize synthetic optree */
-       Newx(prelude_sentinel, 1, OP *);
-       *prelude_sentinel = NULL;
-       sentinel_register(sen, prelude_sentinel, free_ptr_op_void);
+       Newx(prelude_sentinel, 1, OpGuard);
+       op_guard_init(prelude_sentinel);
+       sentinel_register(sen, prelude_sentinel, free_op_guard_void);
 
        /* parameters */
        param_spec = NULL;
 
        c = lex_peek_unichar(0);
        if (c == '(') {
-               OP **init_sentinel;
+               OpGuard *init_sentinel;
 
-               Newx(init_sentinel, 1, OP *);
-               *init_sentinel = NULL;
-               sentinel_register(sen, init_sentinel, free_ptr_op_void);
+               Newx(init_sentinel, 1, OpGuard);
+               op_guard_init(init_sentinel);
+               sentinel_register(sen, init_sentinel, free_op_guard_void);
 
                Newx(param_spec, 1, ParamSpec);
                ps_init(param_spec);
@@ -1228,13 +1268,13 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                        croak("In %"SVf": named parameter %"SVf" can't be a%s", SVfARG(declarator), SVfARG(name), sigil == '@' ? "n array" : " hash");
                                }
                        } else if (flags & PARAM_INVOCANT) {
-                               if (*init_sentinel) {
+                               if (init_sentinel->op) {
                                        croak("In %"SVf": invocant %"SVf" can't have a default value", SVfARG(declarator), SVfARG(name));
                                }
                                if (sigil != '$') {
                                        croak("In %"SVf": invocant %"SVf" can't be a%s", SVfARG(declarator), SVfARG(name), sigil == '@' ? "n array" : " hash");
                                }
-                       } else if (sigil != '$' && *init_sentinel) {
+                       } else if (sigil != '$' && init_sentinel->op) {
                                croak("In %"SVf": %s %"SVf" can't have a default value", SVfARG(declarator), sigil == '@' ? "array" : "hash", SVfARG(name));
                        }
 
@@ -1243,7 +1283,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                croak("In %"SVf": I was expecting \")\" after \"%"SVf"\", not \"%"SVf"\"", SVfARG(declarator), SVfARG(param_spec->slurpy.name), SVfARG(name));
                        }
                        if (sigil != '$') {
-                               assert(!*init_sentinel);
+                               assert(!init_sentinel->op);
                                param_spec->slurpy.name = name;
                                param_spec->slurpy.padoff = padoff;
                                param_spec->slurpy.type = type;
@@ -1270,7 +1310,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                continue;
                        }
 
-                       if (*init_sentinel && !(spec->flags & FLAG_DEFAULT_ARGS)) {
+                       if (init_sentinel->op && !(spec->flags & FLAG_DEFAULT_ARGS)) {
                                croak("In %"SVf": default argument for %"SVf" not allowed here", SVfARG(declarator), SVfARG(name));
                        }
 
@@ -1283,13 +1323,12 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                        croak("In %"SVf": named parameter :%"SVf" not allowed here", SVfARG(declarator), SVfARG(name));
                                }
 
-                               if (*init_sentinel) {
+                               if (init_sentinel->op) {
                                        ParamInit *pi = piv_extend(&param_spec->named_optional);
                                        pi->param.name = name;
                                        pi->param.padoff = padoff;
                                        pi->param.type = type;
-                                       pi->init = *init_sentinel;
-                                       *init_sentinel = NULL;
+                                       pi->init = op_guard_transfer(init_sentinel);
                                        param_spec->named_optional.used++;
                                } else {
                                        Param *p;
@@ -1305,13 +1344,12 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                        param_spec->named_required.used++;
                                }
                        } else {
-                               if (*init_sentinel || param_spec->positional_optional.used) {
+                               if (init_sentinel->op || param_spec->positional_optional.used) {
                                        ParamInit *pi = piv_extend(&param_spec->positional_optional);
                                        pi->param.name = name;
                                        pi->param.padoff = padoff;
                                        pi->param.type = type;
-                                       pi->init = *init_sentinel;
-                                       *init_sentinel = NULL;
+                                       pi->init = op_guard_transfer(init_sentinel);
                                        param_spec->positional_optional.used++;
                                } else {
                                        Param *p = pv_extend(&param_spec->positional_required);
@@ -1325,7 +1363,6 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                }
                lex_read_unichar(0);
                lex_read_space(0);
-               *init_sentinel = NULL;
 
                if (!param_spec->invocant.name && SvTRUE(spec->shift)) {
                        if (ps_contains(aTHX_ param_spec, spec->shift)) {
@@ -1364,9 +1401,9 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
        }
 
        /* attributes */
-       Newx(attrs_sentinel, 1, OP *);
-       *attrs_sentinel = NULL;
-       sentinel_register(sen, attrs_sentinel, free_ptr_op_void);
+       Newx(attrs_sentinel, 1, OpGuard);
+       op_guard_init(attrs_sentinel);
+       sentinel_register(sen, attrs_sentinel, free_op_guard_void);
 
        if (c == ':' || c == '{') /* '}' - hi, vim */ {
 
@@ -1414,7 +1451,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                }
 
                                if (attr) {
-                                       *attrs_sentinel = op_append_elem(OP_LIST, *attrs_sentinel, mkconstsv(aTHX_ SvREFCNT_inc_simple_NN(attr)));
+                                       op_guard_update(attrs_sentinel, op_append_elem(OP_LIST, attrs_sentinel->op, mkconstsv(aTHX_ SvREFCNT_inc_simple_NN(attr))));
                                }
 
                                if (c == ':') {
@@ -1489,7 +1526,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                        mkconstiv(aTHX_ amin));
                        chk = newLOGOP(OP_AND, 0, cond, err);
 
-                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, chk));
+                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, chk)));
                }
 
                amax = args_max(param_spec);
@@ -1522,7 +1559,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                        );
                        chk = newLOGOP(OP_AND, 0, cond, err);
 
-                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, chk));
+                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, chk)));
                }
 
                if (param_spec && (count_named_params(param_spec) || (param_spec->slurpy.name && SvPV_nolen(param_spec->slurpy.name)[0] == '%'))) {
@@ -1552,7 +1589,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                                 mkconstiv(aTHX_ 2)));
                        chk = newLOGOP(OP_AND, 0, cond, err);
 
-                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, chk));
+                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, chk)));
                }
        }
 
@@ -1568,7 +1605,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                        );
                        var = newASSIGNOP(OPf_STACKED, var, 0, newOP(OP_SHIFT, 0));
 
-                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, var));
+                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, var)));
                }
        } else {
                /* my $invocant = shift; */
@@ -1582,10 +1619,10 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                        );
                        var = newASSIGNOP(OPf_STACKED, var, 0, newOP(OP_SHIFT, 0));
 
-                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, var));
+                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, var)));
 
                        if (param_spec->invocant.type && (spec->flags & FLAG_CHECK_TARGS)) {
-                               *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, 0, &param_spec->invocant)));
+                               op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, 0, &param_spec->invocant))));
                        }
                }
 
@@ -1674,13 +1711,13 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                lhs->op_flags |= OPf_PARENS;
                                rhs = newAVREF(newGVOP(OP_GV, 0, PL_defgv));
 
-                               *prelude_sentinel = op_append_list(
-                                       OP_LINESEQ, *prelude_sentinel,
+                               op_guard_update(prelude_sentinel, op_append_list(
+                                       OP_LINESEQ, prelude_sentinel->op,
                                        newSTATEOP(
                                                0, NULL,
                                                newASSIGNOP(OPf_STACKED, lhs, 0, rhs)
                                        )
-                               );
+                               ));
                        }
                }
 
@@ -1706,9 +1743,8 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
 
                                nest = op_append_list(
                                        OP_LINESEQ, nest,
-                                       newASSIGNOP(OPf_STACKED, var, 0, cur->init)
+                                       newASSIGNOP(OPf_STACKED, var, 0, op_guard_relinquish(&cur->init))
                                );
-                               cur->init = NULL;
                                nest = newCONDOP(
                                        0,
                                        cond,
@@ -1717,10 +1753,10 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                );
                        }
 
-                       *prelude_sentinel = op_append_list(
-                               OP_LINESEQ, *prelude_sentinel,
+                       op_guard_update(prelude_sentinel, op_append_list(
+                               OP_LINESEQ, prelude_sentinel->op,
                                nest
-                       );
+                       ));
                }
 
                /* named parameters */
@@ -1762,7 +1798,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                );
                                var = newASSIGNOP(OPf_STACKED, var, 0, cond);
 
-                               *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, var));
+                               op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, var)));
                        }
 
                        for (i = 0, lim = param_spec->named_optional.used; i < lim; i++) {
@@ -1777,8 +1813,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                cond = mkhvelem(aTHX_ param_spec->rest_hash, mkconstpv(aTHX_ p + 1, n - 1));
                                cond = newUNOP(OP_EXISTS, 0, cond);
 
-                               cond = newCONDOP(0, cond, var, cur->init);
-                               cur->init = NULL;
+                               cond = newCONDOP(0, cond, var, op_guard_relinquish(&cur->init));
 
                                var = my_var(
                                        aTHX_
@@ -1787,7 +1822,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                );
                                var = newASSIGNOP(OPf_STACKED, var, 0, cond);
 
-                               *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, var));
+                               op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, var)));
                        }
 
                        if (!param_spec->slurpy.name) {
@@ -1824,7 +1859,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                        cond = newUNOP(OP_KEYS, 0, my_var_g(aTHX_ OP_PADHV, 0, param_spec->rest_hash));
                                        xcroak = newCONDOP(0, cond, xcroak, NULL);
 
-                                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, xcroak));
+                                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, xcroak)));
                                } else {
                                        OP *clear;
 
@@ -1835,7 +1870,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                                newNULLLIST()
                                        );
 
-                                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, clear));
+                                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, clear)));
                                }
                        } else if (param_spec->slurpy.padoff != param_spec->rest_hash) {
                                OP *var, *clear;
@@ -1851,7 +1886,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
 
                                var = newASSIGNOP(OPf_STACKED, var, 0, my_var_g(aTHX_ OP_PADHV, 0, param_spec->rest_hash));
 
-                               *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, var));
+                               op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, var)));
 
                                clear = newASSIGNOP(
                                        OPf_STACKED,
@@ -1860,7 +1895,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                        newNULLLIST()
                                );
 
-                               *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, clear));
+                               op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, clear)));
                        }
                }
 
@@ -1872,7 +1907,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                Param *cur = &param_spec->positional_required.data[i];
 
                                if (cur->type) {
-                                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur)));
+                                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur))));
                                }
                        }
                        base += i;
@@ -1881,7 +1916,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                Param *cur = &param_spec->positional_optional.data[i].param;
 
                                if (cur->type) {
-                                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur)));
+                                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur))));
                                }
                        }
                        base += i;
@@ -1890,7 +1925,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                Param *cur = &param_spec->named_required.data[i];
 
                                if (cur->type) {
-                                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur)));
+                                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur))));
                                }
                        }
                        base += i;
@@ -1899,7 +1934,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
                                Param *cur = &param_spec->named_optional.data[i].param;
 
                                if (cur->type) {
-                                       *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur)));
+                                       op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, mktypecheckp(aTHX_ declarator, base + i, cur))));
                                }
                        }
                        base += i;
@@ -1919,7 +1954,7 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
 
                                loop = newFOROP(0, NULL, list, check, NULL);
 
-                               *prelude_sentinel = op_append_list(OP_LINESEQ, *prelude_sentinel, newSTATEOP(0, NULL, loop));
+                               op_guard_update(prelude_sentinel, op_append_list(OP_LINESEQ, prelude_sentinel->op, newSTATEOP(0, NULL, loop)));
                        }
                }
        }
@@ -1930,18 +1965,16 @@ static int parse_fun(pTHX_ Sentinel sen, OP **pop, const char *keyword_ptr, STRL
        /* add '();' to make function return nothing by default */
        /* (otherwise the invisible parameter initialization can "leak" into
           the return value: fun ($x) {}->("asdf", 0) == 2) */
-       if (*prelude_sentinel) {
+       if (prelude_sentinel->op) {
                body = newSTATEOP(0, NULL, body);
        }
 
-       body = op_append_list(OP_LINESEQ, *prelude_sentinel, body);
-       *prelude_sentinel = NULL;
+       body = op_append_list(OP_LINESEQ, op_guard_relinquish(prelude_sentinel), body);
 
        /* it's go time. */
        {
                CV *cv;
-               OP *const attrs = *attrs_sentinel;
-               *attrs_sentinel = NULL;
+               OP *const attrs = op_guard_relinquish(attrs_sentinel);
 
                SvREFCNT_inc_simple_void(PL_compcv);