X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pad.c;h=a68e202efb0849d578b1ce24f2680b05bbc5ed3c;hb=bc8f2ddd12bfb4ed7885096cdab471dc8d1188aa;hp=715d361acd4f73c55c4bdd947ccb5b310558207c;hpb=f0cb02e3e781e9ee7442d6b61ec0330b7fb95a52;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pad.c b/pad.c index 715d361..a68e202 100644 --- a/pad.c +++ b/pad.c @@ -1150,7 +1150,7 @@ Mark all the current temporaries for reuse * to a shared TARG. Such an alias will change randomly and unpredictably. * We avoid doing this until we can think of a Better Way. * GSAR 97-10-29 */ -void +static void S_pad_reset(pTHX) { dVAR; @@ -1310,13 +1310,7 @@ Perl_pad_free(pTHX_ PADOFFSET po) SvPADTMP_off(PL_curpad[po]); #ifdef USE_ITHREADS /* SV could be a shared hash key (eg bugid #19022) */ - if ( -#ifdef PERL_OLD_COPY_ON_WRITE - !SvIsCOW(PL_curpad[po]) -#else - !SvFAKE(PL_curpad[po]) -#endif - ) + if (!SvIsCOW(PL_curpad[po])) SvREADONLY_off(PL_curpad[po]); /* could be a freed constant */ #endif }