summaryrefslogtreecommitdiff
path: root/mro.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-09-23 22:05:16 +0200
committerNicholas Clark <nick@ccl4.org>2012-09-26 23:28:50 +0200
commit103f5a36127499843005aa988becbcdca21384af (patch)
tree75b84da4272af918d7bbb8c8faab4000dd6df618 /mro.c
parent6f908f1bab380b2a2d78d238aad9752a9721f38a (diff)
downloadperl-103f5a36127499843005aa988becbcdca21384af.tar.gz
-Do now also reports updates and use of PL_stashcache.
Diffstat (limited to 'mro.c')
-rw-r--r--mro.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/mro.c b/mro.c
index c30662d4ad..8ed73f6a60 100644
--- a/mro.c
+++ b/mro.c
@@ -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) {