diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2009-09-11 11:23:31 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2009-09-11 11:23:31 +0000 |
commit | c7e48ee4118e82633073cefc1ababd4d98f7067d (patch) | |
tree | 3ecfc223aef07c36d4dab81ff6f472383edd14c1 /lang/perl5.10/files/patch-bug52740 | |
parent | Update to 0.06. Change maintainer from ports@ to perl@. (diff) |
Update to 5.10.1
Changes: http://search.cpan.org/~dapm/perl-5.10.1/pod/perl5101delta.pod
Notes
Notes:
svn path=/head/; revision=241213
Diffstat (limited to 'lang/perl5.10/files/patch-bug52740')
-rw-r--r-- | lang/perl5.10/files/patch-bug52740 | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/perl5.10/files/patch-bug52740 b/lang/perl5.10/files/patch-bug52740 deleted file mode 100644 index 08a73a1547ee..000000000000 --- a/lang/perl5.10/files/patch-bug52740 +++ /dev/null @@ -1,15 +0,0 @@ -# http://rt.perl.org/rt3/Public/Bug/Display.html?id=52740 -# http://perl5.git.perl.org/perl.git/commitdiff/785bee4f7cf89837cba8e6e0859abbb4b407e1f1?hp=90e91dd8c9549b16c38f6ab2e9fa25c7ea28dff8 -diff --git a/sv.c b/sv.c -index f721e6f..5fcf018 100644 ---- sv.c -+++ sv.c -@@ -3717,7 +3717,7 @@ Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags) - Perl_croak(aTHX_ "Cannot copy to %s", type); - } else if (sflags & SVf_ROK) { - if (isGV_with_GP(dstr) && dtype == SVt_PVGV -- && SvTYPE(SvRV(sstr)) == SVt_PVGV) { -+ && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) { - sstr = SvRV(sstr); - if (sstr == dstr) { - if (GvIMPORTED(dstr) != GVf_IMPORTED |