From: Alex Vandiver Date: Sat, 30 May 2009 00:17:36 +0000 (-0400) Subject: Fix [RT#63110] -- two small memory leaks were introduced in 5b9c067 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cda5537682a2f5132de1e0387c105e67a72efce4;p=p5sagit%2Fp5-mst-13.2.git Fix [RT#63110] -- two small memory leaks were introduced in 5b9c067 --- diff --git a/hv.c b/hv.c index a6b4448..79d1944 100644 --- a/hv.c +++ b/hv.c @@ -1444,7 +1444,7 @@ Perl_hv_copy_hints_hv(pTHX_ HV *const ohv) while ((entry = hv_iternext_flags(ohv, 0))) { SV *const sv = newSVsv(HeVAL(entry)); sv_magic(sv, NULL, PERL_MAGIC_hintselem, - (char *)newSVhek (HeKEY_hek(entry)), HEf_SVKEY); + (char *)sv_2mortal(newSVhek (HeKEY_hek(entry))), HEf_SVKEY); (void)hv_store_flags(hv, HeKEY(entry), HeKLEN(entry), sv, HeHASH(entry), HeKFLAGS(entry)); } diff --git a/pp_ctl.c b/pp_ctl.c index 5adfc68..a7f1b76 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -3668,8 +3668,11 @@ PP(pp_entereval) introduced within evals. See force_ident(). GSAR 96-10-12 */ SAVEHINTS(); PL_hints = PL_op->op_targ; - if (saved_hh) + if (saved_hh) { + /* SAVEHINTS created a new HV in PL_hintgv, which we need to GC */ + SvREFCNT_dec(GvHV(PL_hintgv)); GvHV(PL_hintgv) = saved_hh; + } SAVECOMPILEWARNINGS(); PL_compiling.cop_warnings = DUP_WARNINGS(PL_curcop->cop_warnings); if (PL_compiling.cop_hints_hash) {