Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:8859 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 89816 invoked by uid 1010); 1 Apr 2004 12:41:37 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 89739 invoked from network); 1 Apr 2004 12:41:35 -0000 Received: from unknown (HELO mail.zend.com) (192.117.235.230) by pb1.pair.com with SMTP; 1 Apr 2004 12:41:35 -0000 Received: (qmail 6635 invoked from network); 1 Apr 2004 12:41:27 -0000 Received: from unknown (HELO AndiNotebook.zend.com) (10.1.1.4) by mail.zend.com with SMTP; 1 Apr 2004 12:41:27 -0000 Message-ID: <5.1.0.14.2.20040401143302.021ae848@127.0.0.1> X-Sender: andi@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 01 Apr 2004 14:41:17 +0200 To: internals@lists.php.net Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Releasing 4.3.5pl1 From: andi@zend.com (Andi Gutmans) Hi, A pretty serious bug crept into 4.3.5. A few weeks ago, a TSRM fix was commited which was supposed to prevent memory leaks when PHP ends its execution (shutdown dtor was not being called in tsrm_shutdown()). This fix causes a crash when a shared extension registers a dtor function. This is because the dtor is called after the extension is unloaded. Stas has commited a patch to TSRM which prevents the dtor call for now, which isn't very important because besides giving a warm fuzzy feeling, it's right before PHP shuts down and thus, memory leaks aren't important anyway. On a side note the per-thread dtor is still called, thus, eliminating leaks when threads are created/destroyed in multi-threaded servers. I suggest we release 4.3.5pl1 with just this bug fix within the next couple of days as this is a crash bug which can happen on any MT server or MT-safe PHP builds (such as Windows CGI). Andi