In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/8c53dadaae93f83724d12eb772b088eb0237843e?hp=be68a30e444b3213a95df511fb8e856b2107ce73>

- Log -----------------------------------------------------------------
commit 8c53dadaae93f83724d12eb772b088eb0237843e
Author: Karl Williamson <k...@cpan.org>
Date:   Fri Mar 2 08:04:00 2018 -0700

    mg.c: Fix isSCRIPT_RUN call
    
    Commit 49cd072660b3b1858be5f27df107b3b42498a3f3 failed to fix up this
    call to isSCRIPT_RUN, which is typically only compiled on Windows.

-----------------------------------------------------------------------

Summary of changes:
 mg.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/mg.c b/mg.c
index 331f96639e..c03bf257ff 100644
--- a/mg.c
+++ b/mg.c
@@ -835,8 +835,7 @@ S_fixup_errno_string(pTHX_ SV* sv)
            under UTF-8, which gives us an extra measure of confidence. */
 
             && isSCRIPT_RUN((const U8 *) SvPVX_const(sv), (U8 *) SvEND(sv),
-                            TRUE, /* Means assume UTF-8 */
-                            NULL)
+                            TRUE) /* Means assume UTF-8 */
 #endif
 
         ) {

-- 
Perl5 Master Repository

Reply via email to