diff options
author | Father Chrysostomos <sprout@cpan.org> | 2015-02-04 21:31:29 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2015-02-05 09:15:16 -0800 |
commit | d9a13252ba5aad7b3eaaff069b56472cfb651a40 (patch) | |
tree | 4a3ff12cbf93fe9feec6189205d38cff82ee31f8 /toke.c | |
parent | 8236531137ae107f8a187261b0f8fdb9bff11811 (diff) | |
download | perl-d9a13252ba5aad7b3eaaff069b56472cfb651a40.tar.gz |
toke.c: Use SvREFCNT_dec_NN in one spot
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5323,7 +5323,7 @@ Perl_yylex(pTHX) sv_catsv(sv, PL_lex_stuff); attrs = op_append_elem(OP_LIST, attrs, newSVOP(OP_CONST, 0, sv)); - SvREFCNT_dec(PL_lex_stuff); + SvREFCNT_dec_NN(PL_lex_stuff); PL_lex_stuff = NULL; } else { |