Report forwarded to debian-bugs-dist@lists.debian.org, Darren Stalder <torin@daft.com>:
Bug#58326; Package perl-5.005.   debian-bugs-dist@lists.debian.orgDarren Stalder  Subject: Bug#58326: Perl_my_setenv() problem Reply-To: Steve Haslam , 58326@bugs.debian.org Resent-From: Steve Haslam Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Darren Stalder Resent-Date: Thu, 17 Feb 2000 17:48:05 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 58326 X-Debian-PR-Package: perl-5.005 X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by bugs@bugs.debian.org id=B.95080901019465 (code B ref -1); Thu, 17 Feb 2000 17:48:05 GMT From: Steve Haslam To: Debian Bug Tracking System X-Reportbug-Version: 0.48 X-Mailer: reportbug 0.48 Date: Thu, 17 Feb 2000 17:36:42 +0000 Message-Id: Package: perl-5.005 Version: 5.005.03-5 Severity: normal I'm getting SIGBUS when doing "$ENV{TZ} = 'foo'" statements. Unfortunately, I can't reproduce the problem with a simple script :-( However, I've been using gdb a bit, and I've discovered something disturbing. Perl_my_setenv(), which is the back end to the above perl fragment, will duplicate the environment when it is modified for the first time- however, it seems that for some reason this is not happening with this particular script. I don't know why. In gdb, regrettably, you can't say "p environ" and get a sensible result. Nevertheless, I managed to catch this: Program received signal SIGBUS, Bus error. 0x7016ef94 in free () from /lib/libc.so.6 (gdb) p PL_origenviron $3 = (char **) 0xeffffc18 (gdb) bt #0 0x7016ef94 in free () from /lib/libc.so.6 #1 0x7a924 in Perl_safefree (where=0xeffffd9d) at util.c:173 #2 0x7ec44 in Perl_my_setenv (nam=0x142788 "TZ", val=0x142728 "Europe/London") at util.c:1443 #3 0x82bcc in Perl_magic_setenv (sv=0x14192c, mg=0x142768) at mg.c:660 #4 0x810f8 in Perl_mg_set (sv=0x14192c) at mg.c:149 #5 0x927c4 in Perl_pp_sassign () at pp_hot.c:133 #6 0x91adc in Perl_runops_debug () at run.c:66 #7 0x23910 in perl_run (sv_interp=0x13b248) at perl.c:1100 #8 0x1f470 in main (argc=4, argv=0xeffffc04, env=0xeffffc18) at perlmain.c:51 (gdb) up #1 0x7a924 in Perl_safefree (where=0xeffffd9d) at util.c:173 173 PerlMem_free(where); (gdb) up #2 0x7ec44 in Perl_my_setenv (nam=0x142788 "TZ", val=0x142728 "Europe/London") at util.c:1443 1443 Safefree(environ[i]); (gdb) p environ[i] cannot subscript something of type `' (gdb) p i $6 = 2 (gdb) p PL_origenviron[i] $7 = 0xeffffd9d "TZ=Europe/London" so it appears to be calling Perl_safefree() on the original environment variable in environ[], which not surprisingly chokes. I don't see why the "if (environ == PL_origenviron)" test in Perl_my_setenv() is not trapping this. I'll look into it some more when I have time. With no visibility on the "environ" variable (presumably because crt?.o doesn't have debug sections) it's rather frustrating.... SRH -- System Information Debian Release: potato Architecture: sparc Kernel: Linux flex 2.2.14 #4-ULTRA5 Tue Feb 8 11:32:04 GMT 2000 sparc64 Versions of packages perl-5.005 depends on: ii perl-5.005-base 5.005.03-5 The Pathologically Eclectic Rubbis ii perl-5.005-base [perl5-base 5.005.03-5 The Pathologically Eclectic Rubbis ii perl-base 5.004.05-1.1 Fake package assuring that one of   Acknowledgement sent to Steve Haslam <shaslam@london.excite.com>:
New Bug report received and forwarded. Copy sent to Darren Stalder <torin@daft.com>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Steve Haslam Subject: Bug#58326: Acknowledgement (Perl_my_setenv() problem) Message-ID: In-Reply-To: References: X-Debian-PR-Message: ack 58326 Thank you for the problem report you have sent regarding Debian. This is an automatically generated reply, to let you know your message has been received. It is being forwarded to the developers mailing list for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Darren Stalder If you wish to submit further information on your problem, please send it to 58326@bugs.debian.org (and *not* to bugs@bugs.debian.org). Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at submit) by bugs.debian.org; 17 Feb 2000 17:36:50 +0000 Received: (qmail 19462 invoked from network); 17 Feb 2000 17:36:49 -0000 Received: from flex.london.excite.com (194.216.238.16) by master.debian.org with SMTP; 17 Feb 2000 17:36:49 -0000 Received: from shaslam by flex.london.excite.com with local (Exim 3.12 #1 (Debian)) id 12LUr4-0006vZ-00; Thu, 17 Feb 2000 17:36:42 +0000 From: Steve Haslam To: Debian Bug Tracking System Subject: Perl_my_setenv() problem X-Reportbug-Version: 0.48 X-Mailer: reportbug 0.48 Date: Thu, 17 Feb 2000 17:36:42 +0000 Message-Id: Package: perl-5.005 Version: 5.005.03-5 Severity: normal I'm getting SIGBUS when doing "$ENV{TZ} = 'foo'" statements. Unfortunately, I can't reproduce the problem with a simple script :-( However, I've been using gdb a bit, and I've discovered something disturbing. Perl_my_setenv(), which is the back end to the above perl fragment, will duplicate the environment when it is modified for the first time- however, it seems that for some reason this is not happening with this particular script. I don't know why. In gdb, regrettably, you can't say "p environ" and get a sensible result. Nevertheless, I managed to catch this: Program received signal SIGBUS, Bus error. 0x7016ef94 in free () from /lib/libc.so.6 (gdb) p PL_origenviron $3 = (char **) 0xeffffc18 (gdb) bt #0 0x7016ef94 in free () from /lib/libc.so.6 #1 0x7a924 in Perl_safefree (where=0xeffffd9d) at util.c:173 #2 0x7ec44 in Perl_my_setenv (nam=0x142788 "TZ", val=0x142728 "Europe/London") at util.c:1443 #3 0x82bcc in Perl_magic_setenv (sv=0x14192c, mg=0x142768) at mg.c:660 #4 0x810f8 in Perl_mg_set (sv=0x14192c) at mg.c:149 #5 0x927c4 in Perl_pp_sassign () at pp_hot.c:133 #6 0x91adc in Perl_runops_debug () at run.c:66 #7 0x23910 in perl_run (sv_interp=0x13b248) at perl.c:1100 #8 0x1f470 in main (argc=4, argv=0xeffffc04, env=0xeffffc18) at perlmain.c:51 (gdb) up #1 0x7a924 in Perl_safefree (where=0xeffffd9d) at util.c:173 173 PerlMem_free(where); (gdb) up #2 0x7ec44 in Perl_my_setenv (nam=0x142788 "TZ", val=0x142728 "Europe/London") at util.c:1443 1443 Safefree(environ[i]); (gdb) p environ[i] cannot subscript something of type `' (gdb) p i $6 = 2 (gdb) p PL_origenviron[i] $7 = 0xeffffd9d "TZ=Europe/London" so it appears to be calling Perl_safefree() on the original environment variable in environ[], which not surprisingly chokes. I don't see why the "if (environ == PL_origenviron)" test in Perl_my_setenv() is not trapping this. I'll look into it some more when I have time. With no visibility on the "environ" variable (presumably because crt?.o doesn't have debug sections) it's rather frustrating.... SRH -- System Information Debian Release: potato Architecture: sparc Kernel: Linux flex 2.2.14 #4-ULTRA5 Tue Feb 8 11:32:04 GMT 2000 sparc64 Versions of packages perl-5.005 depends on: ii perl-5.005-base 5.005.03-5 The Pathologically Eclectic Rubbis ii perl-5.005-base [perl5-base 5.005.03-5 The Pathologically Eclectic Rubbis ii perl-base 5.004.05-1.1 Fake package assuring that one of   Bug reassigned from package `perl-5.005' to `perl'. Request was from Brendan O'Dea <bod@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 9 Jan 2002 05:02:50 +0000 From bod@compusol.com.au Tue Jan 08 23:02:50 2002 Return-path: Received: from 210-50-77-245.cust.syd.iprimus.net.au (duende.compusol.com.au) [210.50.77.245] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 16OAsz-0008Bn-00; Tue, 08 Jan 2002 23:02:50 -0600 Received: from bod by duende.compusol.com.au with local (Exim 3.33 #1 (Debian)) id 16OAsY-0004YU-00 for ; Wed, 09 Jan 2002 16:02:22 +1100 Date: Wed, 9 Jan 2002 16:02:22 +1100 From: Brendan O'Dea To: control@bugs.debian.org Subject: Reassign perl-related packages to "perl" Message-ID: <20020109050222.GA17509@compusol.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.25i Sender: Brendan O'Dea Delivered-To: control@bugs.debian.org # libperl5.6 reassign 113881 perl # perl-5.005 reassign 44375 perl reassign 49004 perl reassign 49820 perl reassign 50151 perl reassign 52166 perl reassign 53590 perl reassign 54987 perl reassign 55796 perl reassign 55913 perl reassign 56785 perl reassign 58326 perl reassign 58398 perl reassign 63906 perl reassign 64308 perl reassign 64757 perl reassign 65224 perl reassign 67479 perl reassign 68483 perl reassign 72635 perl reassign 72675 perl reassign 75053 perl reassign 78104 perl reassign 79190 perl reassign 126608 perl # perl-5.005-base reassign 57217 perl reassign 61765 perl reassign 64310 perl reassign 65096 perl reassign 65715 perl reassign 66702 perl reassign 67376 perl reassign 72689 perl reassign 75116 perl reassign 77707 perl reassign 78437 perl reassign 81571 perl reassign 61301 perl # perl-5.005-doc reassign 51962 perl reassign 63405 perl reassign 68876 perl reassign 76293 perl # perl-5.6 reassign 78143 perl reassign 78157 perl reassign 78311 perl reassign 79532 perl reassign 86561 perl # perl-5.6-base reassign 78724 perl reassign 79943 perl # perl-base reassign 69378 perl reassign 71573 perl reassign 95879 perl reassign 104361 perl reassign 104414 perl reassign 116528 perl reassign 128146 perl # perl-doc reassign 96132 perl reassign 101933 perl reassign 113370 perl reassign 114060 perl # perl-modules reassign 92122 perl reassign 98235 perl reassign 103055 perl reassign 127581 perl reassign 127689 perl thanks   Severity set to `important'. Request was from Andrew Suffield <asuffield@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 29 Aug 2002 20:39:24 +0000 From aps100@doc.ic.ac.uk Thu Aug 29 15:39:24 2002 Return-path: Received: from m501-mp1.cvx3-a.bre.dial.ntli.net (cyclone) [62.255.97.245] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 17kW4Z-0001Eg-00; Thu, 29 Aug 2002 15:39:24 -0500 Received: from aps100 by cyclone with local (Exim 3.35 #1 (Debian)) id 17kW4X-0000j7-00 for ; Thu, 29 Aug 2002 21:39:21 +0100 Date: Thu, 29 Aug 2002 21:39:20 +0100 From: Andrew Suffield To: control@bugs.debian.org Subject: Re: Processed: merging 58326 142523 Message-ID: <20020829203920.GA2767@doc.ic.ac.uk> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Monty-Python: No-one expects the Spanish Inquisition! Sender: Andrew Suffield Delivered-To: control@bugs.debian.org severity 58326 important merge 58326 142523 thanks stupid script On Thu, Aug 29, 2002 at 11:18:07AM -0500, Debian Bug Tracking System wrote: > Processing commands for control@bugs.debian.org: > > > merge 58326 142523 > Bug#58326: Perl_my_setenv() problem > Bug#142523: perl-base: bogus env handling causes segfaults > Mismatch - only Bugs in same state can be merged: > Values for `severity' don't match: > #58326 has `normal'; > #142523 has `important' > > > > End of message, stopping processing here. > > Please contact me if you need assistance. > > Debian bug tracking system administrator > (administrator, Debian Bugs database) -- .''`. ** Debian GNU/Linux ** | Andrew Suffield : :' : http://www.debian.org/ | Dept. of Computing, `. `' | Imperial College, `- -><- | London, UK   Merged 58326 142523. Request was from Andrew Suffield <asuffield@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 29 Aug 2002 20:39:24 +0000 From aps100@doc.ic.ac.uk Thu Aug 29 15:39:24 2002 Return-path: Received: from m501-mp1.cvx3-a.bre.dial.ntli.net (cyclone) [62.255.97.245] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 17kW4Z-0001Eg-00; Thu, 29 Aug 2002 15:39:24 -0500 Received: from aps100 by cyclone with local (Exim 3.35 #1 (Debian)) id 17kW4X-0000j7-00 for ; Thu, 29 Aug 2002 21:39:21 +0100 Date: Thu, 29 Aug 2002 21:39:20 +0100 From: Andrew Suffield To: control@bugs.debian.org Subject: Re: Processed: merging 58326 142523 Message-ID: <20020829203920.GA2767@doc.ic.ac.uk> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Monty-Python: No-one expects the Spanish Inquisition! Sender: Andrew Suffield Delivered-To: control@bugs.debian.org severity 58326 important merge 58326 142523 thanks stupid script On Thu, Aug 29, 2002 at 11:18:07AM -0500, Debian Bug Tracking System wrote: > Processing commands for control@bugs.debian.org: > > > merge 58326 142523 > Bug#58326: Perl_my_setenv() problem > Bug#142523: perl-base: bogus env handling causes segfaults > Mismatch - only Bugs in same state can be merged: > Values for `severity' don't match: > #58326 has `normal'; > #142523 has `important' > > > > End of message, stopping processing here. > > Please contact me if you need assistance. > > Debian bug tracking system administrator > (administrator, Debian Bugs database) -- .''`. ** Debian GNU/Linux ** | Andrew Suffield : :' : http://www.debian.org/ | Dept. of Computing, `. `' | Imperial College, `- -><- | London, UK   Information forwarded to debian-bugs-dist@lists.debian.org, Brendan O'Dea <bod@debian.org>:
Bug#58326; Package perl.   debian-bugs-dist@lists.debian.orgBrendan O'Dea  X-Loop: owner@bugs.debian.org Subject: Bug#58326: Also reported upstream Reply-To: Chris Butler , 58326@bugs.debian.org Resent-From: Chris Butler Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Brendan O'Dea Resent-Date: Fri, 02 Jan 2009 15:12:01 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: followup 58326 X-Debian-PR-Package: perl X-Debian-PR-Keywords: patch X-Debian-PR-Source: perl Received: via spool by 58326-submit@bugs.debian.org id=B58326.123090877816593 (code B ref 58326); Fri, 02 Jan 2009 15:12:01 +0000 Received: (at 58326) by bugs.debian.org; 2 Jan 2009 15:06:18 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Bayes: score:0.0000 Tokens: new, 0; hammy, 119; neutral, 39; spammy, 0. spammytokens: hammytokens:0.000-+--H*UA:1.5.13, 0.000-+--H*UA:2006-08-11, 0.000-+--H*u:1.5.13, 0.000-+--H*u:2006-08-11, 0.000-+--1024d X-Spam-Status: No, score=-6.0 required=4.0 tests=BAYES_00,FROMDEVELOPER, SPF_PASS autolearn=unavailable version=3.2.3-bugs.debian.org_2005_01_02 Received: from pie.crustynet.org.uk ([217.147.177.118] helo=cob.crustynet.org.uk ident=postfix) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1LIlXb-0003Oi-1x; Fri, 02 Jan 2009 15:02:40 +0000 Received: from localhost (localhost [127.0.0.1]) by cob.crustynet.org.uk (Postfix) with ESMTP id 027544C532; Fri, 2 Jan 2009 15:02:10 +0000 (GMT) X-Virus-Scanned: Debian amavisd-new at crustynet.org.uk Received: from cob.crustynet.org.uk ([127.0.0.1]) by localhost (cob.crustynet.org.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cQC9wO6bGmKq; Fri, 2 Jan 2009 15:02:09 +0000 (GMT) Received: by cob.crustynet.org.uk (Postfix, from userid 1000) id 7AF654C534; Fri, 2 Jan 2009 15:02:09 +0000 (GMT) Date: Fri, 2 Jan 2009 15:02:09 +0000 From: Chris Butler To: 58326@bugs.debian.org, 142523@bugs.debian.org Cc: control@bugs.debian.org Message-ID: <20090102150209.GA25543@crustynet.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) forwarded 58326 http://rt.perl.org/rt3/Public/Bug/Display.html?id=1170 thanks This bug seems to have been also filed upstream. Marking as such. The testcase listed in the upstream report doesn't seem to trigger the bug on etch/amd64 or lenny/i386. However, the code in Perl_my_setenv (util.c) still seems to be pretty much the same, so I don't think it's necessarily fixed. -- Chris Butler GnuPG Key ID: 1024D/D097A261   Acknowledgement sent to Chris Butler <chrisb@debian.org>:
Extra info received and forwarded to list. Copy sent to Brendan O'Dea <bod@debian.org>.   -t  Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Content-Type: text/plain; charset=utf-8 X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: Chris Butler Subject: Bug#58326: Info received (Also reported upstream) Message-ID: References: <20090102150209.GA25543@crustynet.org.uk> X-Debian-PR-Message: ack-info 58326 X-Debian-PR-Package: perl X-Debian-PR-Keywords: patch X-Debian-PR-Source: perl Reply-To: 58326@bugs.debian.org Date: Fri, 02 Jan 2009 15:12:02 +0000 Thank you for the additional information you have supplied regarding this Bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Brendan O'Dea If you wish to submit further information on this problem, please send it to 58326@bugs.debian.org, as before. Please do not send mail to owner@bugs.debian.org unless you wish to report a problem with the Bug-tracking system. --=20 58326: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D58326 Debian Bug Tracking System Contact owner@bugs.debian.org with problems   Received: (at 58326) by bugs.debian.org; 2 Jan 2009 15:06:18 +0000 From chrisb@crustynet.org.uk Fri Jan 02 15:06:18 2009 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Bayes: score:0.0000 Tokens: new, 0; hammy, 119; neutral, 39; spammy, 0. spammytokens: hammytokens:0.000-+--H*UA:1.5.13, 0.000-+--H*UA:2006-08-11, 0.000-+--H*u:1.5.13, 0.000-+--H*u:2006-08-11, 0.000-+--1024d X-Spam-Status: No, score=-6.0 required=4.0 tests=BAYES_00,FROMDEVELOPER, SPF_PASS autolearn=unavailable version=3.2.3-bugs.debian.org_2005_01_02 Return-path: Received: from pie.crustynet.org.uk ([217.147.177.118] helo=cob.crustynet.org.uk ident=postfix) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1LIlXb-0003Oi-1x; Fri, 02 Jan 2009 15:02:40 +0000 Received: from localhost (localhost [127.0.0.1]) by cob.crustynet.org.uk (Postfix) with ESMTP id 027544C532; Fri, 2 Jan 2009 15:02:10 +0000 (GMT) X-Virus-Scanned: Debian amavisd-new at crustynet.org.uk Received: from cob.crustynet.org.uk ([127.0.0.1]) by localhost (cob.crustynet.org.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cQC9wO6bGmKq; Fri, 2 Jan 2009 15:02:09 +0000 (GMT) Received: by cob.crustynet.org.uk (Postfix, from userid 1000) id 7AF654C534; Fri, 2 Jan 2009 15:02:09 +0000 (GMT) Date: Fri, 2 Jan 2009 15:02:09 +0000 From: Chris Butler To: 58326@bugs.debian.org, 142523@bugs.debian.org Cc: control@bugs.debian.org Subject: Also reported upstream Message-ID: <20090102150209.GA25543@crustynet.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) forwarded 58326 http://rt.perl.org/rt3/Public/Bug/Display.html?id=1170 thanks This bug seems to have been also filed upstream. Marking as such. The testcase listed in the upstream report doesn't seem to trigger the bug on etch/amd64 or lenny/i386. However, the code in Perl_my_setenv (util.c) still seems to be pretty much the same, so I don't think it's necessarily fixed. -- Chris Butler GnuPG Key ID: 1024D/D097A261   Noted your statement that Bug has been forwarded to http://rt.perl.org/rt3/Public/Bug/Display.html?id=1170. Request was from Chris Butler <chrisb@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 2 Jan 2009 15:06:09 +0000 From chrisb@crustynet.org.uk Fri Jan 02 15:06:09 2009 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Bayes: score:0.0000 Tokens: new, 37; hammy, 80; neutral, 36; spammy, 5. spammytokens:1.000-1--butler, 1.000-1--HTo:U*58326, 0.999-1--Butler, 0.987-1--HX-Spam-Relays-External:sk:1LIlXb-, 0.987-1--H*RU:sk:1LIlXb- hammytokens:0.000-+--H*UA:1.5.13, 0.000-+--H*UA:2006-08-11, 0.000-+--H*u:1.5.13, 0.000-+--H*u:2006-08-11, 0.000-+--1024d X-Spam-Status: No, score=-6.0 required=4.0 tests=BAYES_00,FROMDEVELOPER, SPF_PASS autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Return-path: Received: from pie.crustynet.org.uk ([217.147.177.118] helo=cob.crustynet.org.uk ident=postfix) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1LIlXb-0003Oi-1x; Fri, 02 Jan 2009 15:02:40 +0000 Received: from localhost (localhost [127.0.0.1]) by cob.crustynet.org.uk (Postfix) with ESMTP id 027544C532; Fri, 2 Jan 2009 15:02:10 +0000 (GMT) X-Virus-Scanned: Debian amavisd-new at crustynet.org.uk Received: from cob.crustynet.org.uk ([127.0.0.1]) by localhost (cob.crustynet.org.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cQC9wO6bGmKq; Fri, 2 Jan 2009 15:02:09 +0000 (GMT) Received: by cob.crustynet.org.uk (Postfix, from userid 1000) id 7AF654C534; Fri, 2 Jan 2009 15:02:09 +0000 (GMT) Date: Fri, 2 Jan 2009 15:02:09 +0000 From: Chris Butler To: 58326@bugs.debian.org, 142523@bugs.debian.org Cc: control@bugs.debian.org Subject: Also reported upstream Message-ID: <20090102150209.GA25543@crustynet.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) Delivered-To: control@bugs.debian.org forwarded 58326 http://rt.perl.org/rt3/Public/Bug/Display.html?id=1170 thanks This bug seems to have been also filed upstream. Marking as such. The testcase listed in the upstream report doesn't seem to trigger the bug on etch/amd64 or lenny/i386. However, the code in Perl_my_setenv (util.c) still seems to be pretty much the same, so I don't think it's necessarily fixed. -- Chris Butler GnuPG Key ID: 1024D/D097A261   Forwarded-to-address changed from http://rt.perl.org/rt3/Public/Bug/Display.html?id=1170 to http://rt.perl.org/rt3/Ticket/Display.html?id=1789. Request was from Chris Butler <chrisb@debian.org> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 2 Jan 2009 15:40:37 +0000 From chrisb@crustynet.org.uk Fri Jan 02 15:40:37 2009 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Bayes: score:0.0000 Tokens: new, 14; hammy, 76; neutral, 37; spammy, 0. spammytokens: hammytokens:0.000-+--H*UA:1.5.13, 0.000-+--H*UA:2006-08-11, 0.000-+--H*u:1.5.13, 0.000-+--H*u:2006-08-11, 0.000-+--1024d X-Spam-Status: No, score=-6.0 required=4.0 tests=BAYES_00,FROMDEVELOPER, SPF_PASS autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Return-path: Received: from pie.crustynet.org.uk ([217.147.177.118] helo=cob.crustynet.org.uk ident=postfix) by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1LIm8a-0001Am-Vf for control@bugs.debian.org; Fri, 02 Jan 2009 15:40:37 +0000 Received: from localhost (localhost [127.0.0.1]) by cob.crustynet.org.uk (Postfix) with ESMTP id 857714C532 for ; Fri, 2 Jan 2009 15:40:35 +0000 (GMT) X-Virus-Scanned: Debian amavisd-new at crustynet.org.uk Received: from cob.crustynet.org.uk ([127.0.0.1]) by localhost (cob.crustynet.org.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H5o+KCLfyzZ1 for ; Fri, 2 Jan 2009 15:40:33 +0000 (GMT) Received: by cob.crustynet.org.uk (Postfix, from userid 1000) id 1C88B4C534; Fri, 2 Jan 2009 15:40:33 +0000 (GMT) Date: Fri, 2 Jan 2009 15:40:33 +0000 From: Chris Butler To: control@bugs.debian.org Subject: wrong upstream bug Message-ID: <20090102154033.GB25543@crustynet.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) Delivered-To: control@bugs.debian.org forwarded 58326 http://rt.perl.org/rt3/Ticket/Display.html?id=1789 thanks Sorry, wrong upstream bug - this should be the correct one. -- Chris Butler GnuPG Key ID: 1024D/D097A261