/[pkgs]/devel/perl/15_fix_local_symtab
ViewVC logotype

Contents of /devel/perl/15_fix_local_symtab

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download)
Wed Mar 11 22:01:05 2009 UTC (8 months, 1 week ago) by spot
Branch: MAIN
CVS Tags: F-12-split, perl-5_10_0-63_fc11, perl-5_10_0-61_fc11, perl-5_10_0-80_fc12, perl-5_10_0-81_fc12, perl-5_10_0-84_fc13, perl-5_10_0-82_fc13, perl-5_10_0-77_fc12, perl-5_10_0-83_fc13, perl-5_10_0-71_fc12, perl-5_10_0-75_fc12, perl-5_10_0-73_fc12, perl-5_10_0-68_fc11, perl-5_10_0-67_fc11, perl-5_10_0-64_fc11, perl-5_10_0-72_fc12, F-11-split, perl-5_10_0-62_fc11, perl-5_10_0-69_fc12, perl-5_10_0-79_fc12, perl-5_10_0-78_fc12, perl-5_10_0-70_fc12, perl-5_10_0-74_fc12, perl-5_10_0-66_fc11, perl-5_10_0-65_fc11, perl-5_10_0-76_fc12, HEAD
reorder @INC, fix bz 489204, merge useful debian patches
1 Fix a segmentation fault occurring in the mod_perl2 test suite. (Closes: #475498)
2
3 Upstream change #33807 backported from blead.
4
5 [perl #52740]
6 diff --git a/sv.c b/sv.c
7 index 718e305..fe36438 100644
8 --- a/sv.c
9 +++ b/sv.c
10 @@ -3557,8 +3557,10 @@ Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV *sstr, I32 flags)
11 GvMULTI_on(dstr);
12 return;
13 }
14 - glob_assign_glob(dstr, sstr, dtype);
15 - return;
16 + if (isGV_with_GP(sstr)) {
17 + glob_assign_glob(dstr, sstr, dtype);
18 + return;
19 + }
20 }
21
22 if (dtype >= SVt_PV) {

admin@fedoraproject.org
ViewVC Help
Powered by ViewVC 1.1.2