Change 29541 by [EMAIL PROTECTED] on 2006/12/12 23:02:56
In theory Perl_magic_setbm() should clear SvTAIL() too. In practice,
I don't think that it matters as this routine is never actualy called
because nothing exposes PVBMs to the world so that the world can assign
to them.
Affected files ...
... //depot/perl/mg.c#465 edit
Differences ...
==== //depot/perl/mg.c#465 (text) ====
Index: perl/mg.c
--- perl/mg.c#464~29531~ 2006-12-12 05:32:01.000000000 -0800
+++ perl/mg.c 2006-12-12 15:02:56.000000000 -0800
@@ -2117,6 +2117,7 @@
{
PERL_UNUSED_ARG(mg);
sv_unmagic(sv, PERL_MAGIC_bm);
+ SvTAIL_off(sv);
SvVALID_off(sv);
return 0;
}
End of Patch.