diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-09-23 22:05:16 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-09-26 23:28:50 +0200 |
commit | 103f5a36127499843005aa988becbcdca21384af (patch) | |
tree | 75b84da4272af918d7bbb8c8faab4000dd6df618 /mro.c | |
parent | 6f908f1bab380b2a2d78d238aad9752a9721f38a (diff) | |
download | perl-103f5a36127499843005aa988becbcdca21384af.tar.gz |
-Do now also reports updates and use of PL_stashcache.
Diffstat (limited to 'mro.c')
-rw-r--r-- | mro.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -952,9 +952,13 @@ S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes, while (items--) { const U32 name_utf8 = SvUTF8(*svp); STRLEN len; - const char *name = SvPVx_const(*svp++, len); - if(PL_stashcache) + const char *name = SvPVx_const(*svp, len); + if(PL_stashcache) { + DEBUG_o(Perl_deb(aTHX_ "mro_gather_and_rename clearing PL_stashcache for '%"SVf"'\n", + *svp)); (void)hv_delete(PL_stashcache, name, name_utf8 ? -(I32)len : (I32)len, G_DISCARD); + } + ++svp; hv_ename_delete(oldstash, name, len, name_utf8); if (!fetched_isarev) { |