Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:42549 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 98821 invoked from network); 11 Jan 2009 00:45:28 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 11 Jan 2009 00:45:28 -0000 Authentication-Results: pb1.pair.com header.from=php-dev.list@daevel.fr; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=php-dev.list@daevel.fr; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain daevel.fr designates 91.121.160.166 as permitted sender) X-PHP-List-Original-Sender: php-dev.list@daevel.fr X-Host-Fingerprint: 91.121.160.166 scrubby.daevel.fr Linux 2.6 Received: from [91.121.160.166] ([91.121.160.166:40900] helo=scrubby.daevel.fr) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 38/E3-26912-52149694 for ; Sat, 10 Jan 2009 19:45:27 -0500 Received: from luuna.daevel.fr ([82.67.25.170] helo=[192.168.1.50]) by scrubby.daevel.fr with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.68) (envelope-from ) id 1LLoS8-00044W-BZ for internals@lists.php.net; Sun, 11 Jan 2009 01:45:20 +0100 Message-ID: <4969411A.4080404@daevel.fr> Date: Sun, 11 Jan 2009 01:45:14 +0100 User-Agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: internals@lists.php.net References: <48EF89BD.5030904@daevel.fr> <48F05C90.1070609@suse.de> <48F0E7F2.2010607@daevel.fr> <48F5F3AE.4090306@daevel.net> <1224095996.4866.4.camel@felipe> <48F6862D.1050502@daevel.fr> In-Reply-To: <48F6862D.1050502@daevel.fr> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] segfault => bug report #46308 From: php-dev.list@daevel.fr (Olivier Bonvalet) Hello, this bug was corrected in CVS on 17 oct, but I can't find the related patch on http://news.php.net/php.cvs/start/53560 Does someone know which one is it ? I would like try to backport it to PHP 5.2.6 Thanks in advance, Olivier Bonvalet Olivier Bonvalet a écrit : > Hi Filipe, > > there is not the problem with your code, the script works fine and > show "NULL". > > I open this bug report : http://bugs.php.net/bug.php?id=46308 > (I hope the title is correct... I did'nt know what to put...) > > Thanks, > Olivier > > Felipe Pena a écrit : >> Hi Olivier, >> >> >> That is weird, cannot you reproduce it using the code below? >> >> > class main >> { >> public static $dataAccessor; >> } >> >> class relay >> { >> public function __get($name) >> { >> main::$dataAccessor = 1; >> } >> } >> >> main::$dataAccessor = new relay(); >> var_dump(main::$dataAccessor->bar); >> >> ?> >> >> Anyway, please file a bug report: http://bugs.php.net/report.php >> >> Thanks. >> >> > >