projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e604303
)
In theory Perl_magic_setbm() should clear SvTAIL() too. In practice,
author
Nicholas Clark
<nick@ccl4.org>
Tue, 12 Dec 2006 23:02:56 +0000
(23:02 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Tue, 12 Dec 2006 23:02:56 +0000
(23:02 +0000)
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.
p4raw-id: //depot/perl@29541
mg.c
patch
|
blob
|
history
diff --git
a/mg.c
b/mg.c
index
450196b
..
39117e2
100644
(file)
--- a/
mg.c
+++ b/
mg.c
@@
-2117,6
+2117,7
@@
Perl_magic_setbm(pTHX_ SV *sv, MAGIC *mg)
{
PERL_UNUSED_ARG(mg);
sv_unmagic(sv, PERL_MAGIC_bm);
+ SvTAIL_off(sv);
SvVALID_off(sv);
return 0;
}