Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:8541 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 39150 invoked by uid 1010); 16 Mar 2004 18:58:34 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 39127 invoked from network); 16 Mar 2004 18:58:34 -0000 Received: from unknown (HELO hermes.sunderland.ac.uk) (157.228.37.117) by pb1.pair.com with SMTP; 16 Mar 2004 18:58:34 -0000 Received: from steph2 ([157.228.147.166]) by hermes.sunderland.ac.uk (iPlanet Messaging Server 5.2 Patch 1 (built Aug 19 2002)) with ESMTP id <0HUO00EZVNE727@hermes.sunderland.ac.uk> for internals@lists.php.net; Tue, 16 Mar 2004 18:58:56 +0000 (GMT) Date: Tue, 16 Mar 2004 19:07:25 +0000 In-reply-to: <10794587691040000@9866357972520000.9866341568840000> To: "Frank M. Kromann" , internals@lists.php.net Reply-to: steph.fox@virgin.net Message-ID: MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Subject: RE: [PHP-DEV] [PATCH} ZTS fix for zend_execute_API.c From: steph.fox@virgin.net (Steph) References: <10794587691040000@9866357972520000.9866341568840000> Thanks Frank, I thought it was just me! > -----Original Message----- > From: Frank M. Kromann [mailto:frank@kromann.info] > Sent: 16 March 2004 17:39 > To: internals@lists.php.net > Subject: [PHP-DEV] [PATCH} ZTS fix for zend_execute_API.c > > > Hello, > > Here is a diff for zend_execute_API.c, fixing ZTS builds. > > - Frank > > Index: zend_execute_API.c > =================================================================== > RCS file: /repository/ZendEngine2/zend_execute_API.c,v > retrieving revision 1.280 > diff -u -r1.280 zend_execute_API.c > --- zend_execute_API.c 16 Mar 2004 14:59:06 -0000 1.280 > +++ zend_execute_API.c 16 Mar 2004 17:40:37 -0000 > @@ -652,8 +652,8 @@ > zend_error(E_ERROR, > "Class '%s' not found", > Z_STRVAL_PP(fci->object_pp)); > } > if (EG(This) && > - > instanceof_function(Z_OBJCE_P(EG(This)), scope) && > - > instanceof_function(scope, *ce)) { > + > instanceof_function(Z_OBJCE_P(EG(This)), scope TSRMLS_CC) && > + > instanceof_function(scope, *ce TSRMLS_CC)) { > fci->object_pp = &EG(This); > } else { > fci->object_pp = NULL; > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php