In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/99315af872aaf23d9620b68b29cdc34181bf06c7?hp=b10f34abb55ae2504baa9b770b3bff979de781c2>

- Log -----------------------------------------------------------------
commit 99315af872aaf23d9620b68b29cdc34181bf06c7
Author: Jarkko Hietaniemi <j...@iki.fi>
Date:   Tue Mar 22 19:43:21 2016 -0400

    [perl #127764] Perl with '-Dusecbacktrace' doesn't compile on darwin
    
    Fix a thinko in 22ff3130.
-----------------------------------------------------------------------

Summary of changes:
 util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util.c b/util.c
index fa27ecb..c1c854f 100644
--- a/util.c
+++ b/util.c
@@ -6185,7 +6185,7 @@ static const char* atos_parse(const char* p,
     *source_name_size = source_name_end - p;
     if (grok_atoUV(source_number_start, &uv,  &source_line_end)
         && source_line_end == close_paren
-        && uv <= MAX_STRLEN
+        && uv <= PERL_INT_MAX
     ) {
         *source_line = (STRLEN)uv;
         return p;

--
Perl5 Master Repository

Reply via email to