In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/7d59d161cb0d8b62aecb78fa8c5e011538e6a17e?hp=cda67c9995c6d90b71a0939aaae084e1869b8248>

- Log -----------------------------------------------------------------
commit 7d59d161cb0d8b62aecb78fa8c5e011538e6a17e
Author: Daniel Dragan <bul...@hotmail.com>
Date:   Wed Jul 2 16:19:37 2014 -0400

    universal.c gv_stashpv -> gv_stashpvs
    
    avoids a strlen()
-----------------------------------------------------------------------

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

diff --git a/universal.c b/universal.c
index 4f65948..c219411 100644
--- a/universal.c
+++ b/universal.c
@@ -384,7 +384,7 @@ XS(XS_UNIVERSAL_can)
     else {
         pkg = gv_stashsv(sv, 0);
         if (!pkg)
-            pkg = gv_stashpv("UNIVERSAL", 0);
+            pkg = gv_stashpvs("UNIVERSAL", 0);
     }
 
     if (pkg) {

--
Perl5 Master Repository

Reply via email to