In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/4c916935c1a92a1e788b3be03e59191658b33154?hp=c6008483e405015834571507162824920238e97b>

- Log -----------------------------------------------------------------
commit 4c916935c1a92a1e788b3be03e59191658b33154
Author: Jerry D. Hedden <[email protected]>
Date:   Wed Dec 1 09:51:43 2010 -0500

    Fix uninit compiler warning in mro.c
-----------------------------------------------------------------------

Summary of changes:
 mro.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mro.c b/mro.c
index 170741c..d4dc681 100644
--- a/mro.c
+++ b/mro.c
@@ -830,7 +830,7 @@ S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * 
const seen_stashes,
     register XPVHV* xhv;
     register HE *entry;
     I32 riter = -1;
-    I32 items;
+    I32 items = 0;
     const bool stash_had_name = stash && HvENAME(stash);
     bool fetched_isarev = FALSE;
     HV *seen = NULL;

--
Perl5 Master Repository

Reply via email to