Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:3580 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 79878 invoked from network); 23 Jul 2003 17:07:31 -0000 Received: from unknown (HELO vckyb3.nw.wakwak.com) (211.9.231.144) by pb1.pair.com with SMTP; 23 Jul 2003 17:07:31 -0000 Received: from at.wakwak.com (at.wakwak.com [211.9.230.135:25]) by vckyb3.nw.wakwak.com (Postfix) with ESMTP id AEC4A3FE4E; Thu, 24 Jul 2003 02:07:30 +0900 (JST) Received: from at.wakwak.com (z77.220-213-36.ppp.wakwak.ne.jp [220.213.36.77]) by at.wakwak.com (8.12.9/8.12.9/2003-06-03) with SMTP id h6NH7UdO069658; Thu, 24 Jul 2003 02:07:30 +0900 (JST) (envelope-from moriyoshi@at.wakwak.com) Date: Thu, 24 Jul 2003 02:10:02 +0900 X-Mailer: EdMax Ver2.85.3F MIME-Version: 1.0 To: "Tom Fishwick" Cc: internals@lists.php.net Message-ID: <20030724021002Us-=X+@at.wakwak.com> Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit In-Reply-To: <3727.1058979929@zworg.com> References: <3727.1058979929@zworg.com> Subject: Re: [PHP-DEV] segfault with class type hints and refs. From: moriyoshi@at.wakwak.com (Moriyoshi Koizumi) The problem you found seems identical to the bug #24658. http://bugs.php.net/bug.php?id=24658 Anyway, thanks for the report. Moriyoshi "Tom Fishwick" wrote: > Hi, I was trying out the class type hints feature, and > > class P { } > > function func(P $p) { } > > $p = new P; > > func(&$p); > ?> > > that causes a segfault. Doing function func(P &$p), also causes a > segfault. I'm using todays snapshot. Here's a bt.