In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/52a9a866c79d0cc70f5d2074dd80a3d52797f03a?hp=6bdc4f2cdd76ae57ca322b403017077187bc865c>

- Log -----------------------------------------------------------------
commit 52a9a866c79d0cc70f5d2074dd80a3d52797f03a
Author: David Mitchell <[email protected]>
Date:   Fri Jul 23 23:24:11 2010 +0100

    [perl #76478] silence compiler warning
    
    Intel's icc compiler is too clever for its own good.
    Silence a false positive 'may be used undefined' warning.
-----------------------------------------------------------------------

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

diff --git a/op.c b/op.c
index 276e100..5a0962b 100644
--- a/op.c
+++ b/op.c
@@ -5661,7 +5661,7 @@ Perl_newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP 
*attrs, OP *block)
     dVAR;
     GV *gv;
     const char *ps;
-    STRLEN ps_len;
+    STRLEN ps_len = 0; /* init it to avoid false uninit warning from icc */
     register CV *cv = NULL;
     SV *const_sv;
     /* If the subroutine has no body, no attributes, and no builtin attributes

--
Perl5 Master Repository

Reply via email to