In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/e34b9a6d55f57f644ad01756d834ceca461e9388?hp=950c540d858c1ac2d433513ee5aeae7a059dbca0>

- Log -----------------------------------------------------------------
commit e34b9a6d55f57f644ad01756d834ceca461e9388
Author: Jarkko Hietaniemi <[email protected]>
Date:   Fri Dec 5 21:59:28 2014 -0500

    Initialize possibly uninitialized.
-----------------------------------------------------------------------

Summary of changes:
 ext/mro/mro.xs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ext/mro/mro.xs b/ext/mro/mro.xs
index fead95f..987bafb 100644
--- a/ext/mro/mro.xs
+++ b/ext/mro/mro.xs
@@ -477,8 +477,8 @@ mro__nextcan(...)
     const PERL_SI *top_si = PL_curstackinfo;
     HV* selfstash;
     SV *stashname;
-    const char *fq_subname;
-    const char *subname;
+    const char *fq_subname = NULL;
+    const char *subname = NULL;
     bool subname_utf8 = 0;
     STRLEN stashname_len;
     STRLEN subname_len;

--
Perl5 Master Repository

Reply via email to