Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:49560 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 88082 invoked from network); 3 Sep 2010 09:35:41 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 3 Sep 2010 09:35:41 -0000 X-Host-Fingerprint: 78.142.172.145 gate-g21.inqnet.at Received: from [78.142.172.145] ([78.142.172.145:20548] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 81/35-47051-C61C08C4 for ; Fri, 03 Sep 2010 05:35:41 -0400 Message-ID: <81.35.47051.C61C08C4@pb1.pair.com> To: internals@lists.php.net Date: Fri, 03 Sep 2010 11:35:37 +0200 User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100806 Lanikai/3.1.2 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Posted-By: 78.142.172.145 Subject: remove or fix zend_object_proxies From: mike@php.net (Michael Wallner) At the current state zend_object_proxies are pretty broken. - They'd need an explicit zend_objects_store_dtor otherwise zend_objects_destroy_object causes a SEGV. - Any op other than set/get or cast to bool/int/double on the object cause a fatal error because no class_entry can be retrieved, or a SEGV because calling object handlers without prior checking for existence. Mike