Change 29910 by [EMAIL PROTECTED] on 2007/01/21 23:11:30

        Restore the const to vtbl in Perl_mg_localize() removed in change
        26924.

Affected files ...

... //depot/perl/mg.c#475 edit

Differences ...

==== //depot/perl/mg.c#475 (text) ====
Index: perl/mg.c
--- perl/mg.c#474~29831~        2007-01-15 08:26:17.000000000 -0800
+++ perl/mg.c   2007-01-21 15:11:30.000000000 -0800
@@ -413,7 +413,7 @@
     dVAR;
     MAGIC *mg;
     for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) {
-       MGVTBL* const vtbl = mg->mg_virtual;
+       const MGVTBL* const vtbl = mg->mg_virtual;
        switch (mg->mg_type) {
        /* value magic types: don't copy */
        case PERL_MAGIC_bm:
End of Patch.

Reply via email to