Change 33669 by [EMAIL PROTECTED] on 2008/04/11 13:45:43

        Fix C portability nit found by Jerry D. Hedden.

Affected files ...

... //depot/perl/sv.c#1537 edit

Differences ...

==== //depot/perl/sv.c#1537 (text) ====
Index: perl/sv.c
--- perl/sv.c#1536~33668~       2008-04-11 05:32:09.000000000 -0700
+++ perl/sv.c   2008-04-11 06:45:43.000000000 -0700
@@ -7873,8 +7873,8 @@
 
     default:
        if (SvROK(sv)) {
-           SvGETMAGIC(sv);
            SV * const *sp = &sv;       /* Used in tryAMAGICunDEREF macro. */
+           SvGETMAGIC(sv);
            tryAMAGICunDEREF(to_cv);
 
            sv = SvRV(sv);
End of Patch.

Reply via email to