Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17851 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 79311 invoked by uid 1010); 12 Aug 2005 01:14:45 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 79296 invoked from network); 12 Aug 2005 01:14:44 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Aug 2005 01:14:44 -0000 X-Host-Fingerprint: 68.219.111.113 adsl-219-111-113.asm.bellsouth.net Received: from ([68.219.111.113:19074] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 9C/62-33075-308FBF24 for ; Thu, 11 Aug 2005 21:14:43 -0400 Message-ID: <9C.62.33075.308FBF24@pb1.pair.com> To: internals@lists.php.net Reply-To: "cshmoove@bellsouth.net" Date: Thu, 11 Aug 2005 21:13:58 -0700 Lines: 20 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-RFC2646: Format=Flowed; Original X-Posted-By: 68.219.111.113 Subject: [PATCH] VC++/ZTS Patch Partie Deux From: cshmoove@bellsouth.net Index: Zend/zend_compile.c =================================================================== RCS file: /repository/ZendEngine2/zend_compile.c,v retrieving revision 1.650 diff -u -r1.650 zend_compile.c --- Zend/zend_compile.c 11 Aug 2005 23:34:55 -0000 1.650 +++ Zend/zend_compile.c 12 Aug 2005 04:11:53 -0000 @@ -2208,7 +2208,7 @@ zend_hash_merge(&ce->constants_table, &parent_ce->constants_table, (void (*)(void *)) zval_add_ref, NULL, sizeof(zval *), 0); zend_hash_merge_ex(&ce->function_table, &parent_ce->function_table, (copy_ctor_func_t) do_inherit_method, sizeof(zend_function), (merge_checker_func_t) do_inherit_method_check, ce); - do_inherit_parent_constructor(ce); + do_inherit_parent_constructor(ce TSRMLS_CC); if (ce->ce_flags & ZEND_ACC_IMPLICIT_ABSTRACT_CLASS && ce->type == ZEND_INTERNAL_CLASS) { ce->ce_flags |= ZEND_ACC_EXPLICIT_ABSTRACT_CLASS;