diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-03-26 13:05:50 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-03-26 13:05:50 +0000 |
commit | dfa41748806263fb8b5d5fcb051bd36be96fe93c (patch) | |
tree | 489e1161a9e207248764b6552aba3327e675d317 /op.c | |
parent | 61967be2c930c0a1754925d7a1d1c2924a3b57ab (diff) | |
download | perl-dfa41748806263fb8b5d5fcb051bd36be96fe93c.tar.gz |
[perl #27040] - hints hash was being double freed on scope exit
p4raw-id: //depot/perl@22594
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1763,13 +1763,11 @@ Perl_scope(pTHX_ OP *o) return o; } +/* XXX kept for BINCOMPAT only */ void Perl_save_hints(pTHX) { - SAVEI32(PL_hints); - SAVESPTR(GvHV(PL_hintgv)); - GvHV(PL_hintgv) = newHVhv(GvHV(PL_hintgv)); - SAVEFREESV(GvHV(PL_hintgv)); + Perl_croak(aTHX_ "internal error: obsolete function save_hints() called"); } int |