summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-02-04 21:31:29 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-02-05 09:15:16 -0800
commitd9a13252ba5aad7b3eaaff069b56472cfb651a40 (patch)
tree4a3ff12cbf93fe9feec6189205d38cff82ee31f8 /toke.c
parent8236531137ae107f8a187261b0f8fdb9bff11811 (diff)
downloadperl-d9a13252ba5aad7b3eaaff069b56472cfb651a40.tar.gz
toke.c: Use SvREFCNT_dec_NN in one spot
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 559c74cf6f..c0a5b3123f 100644
--- a/toke.c
+++ b/toke.c
@@ -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 {