In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/a2bf5ab1b8344732c3d83dcec1278b619c9daf6a?hp=f593865081be3207047e726481e30d6c7f944a66>

- Log -----------------------------------------------------------------
commit a2bf5ab1b8344732c3d83dcec1278b619c9daf6a
Author: Father Chrysostomos <[email protected]>
Date:   Sun Jun 12 23:16:29 2011 -0700

    Move an XS::APItest var decl to PREINIT
    
    Hopefully this will get smoke reports to pass again on Windows.
-----------------------------------------------------------------------

Summary of changes:
 ext/XS-APItest/APItest.xs |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ext/XS-APItest/APItest.xs b/ext/XS-APItest/APItest.xs
index cb5de2d..21f417d 100644
--- a/ext/XS-APItest/APItest.xs
+++ b/ext/XS-APItest/APItest.xs
@@ -2794,8 +2794,9 @@ OUTPUT:
 
 void
 fill_hash_with_nulls(HV *hv)
-CODE:
+PREINIT:
     UV i = 0;
+CODE:
     for(; i < 1000; ++i) {
        HE *entry = hv_fetch_ent(hv, sv_2mortal(newSVuv(i)), 1, 0);
        SvREFCNT_dec(HeVAL(entry));

--
Perl5 Master Repository

Reply via email to