don't call themselves READONLY but still die with modification
attempt. We only call bless for ext and umagic.
p4raw-id: //depot/perl@12610
else
SvAMAGIC_off(sv);
- SvSETMAGIC(tmpRef);
+ if(SvSMAGICAL(tmpRef))
+ if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
+ mg_set(tmpRef);
+
+
return sv;
}