iliaa Mon Nov 24 21:19:48 2003 EDT Modified files: (Branch: PHP_4_3) /php-src NEWS /php-src/ext/domxml php_domxml.c Log: Fixed bug #26384 (crash inside domxslt->process() due to a double free). Index: php-src/NEWS diff -u php-src/NEWS:1.1247.2.476 php-src/NEWS:1.1247.2.477 --- php-src/NEWS:1.1247.2.476 Sun Nov 23 20:43:58 2003 +++ php-src/NEWS Mon Nov 24 21:19:46 2003 @@ -3,6 +3,7 @@ ?? ??? 2003, Version 4.3.5 - Fixed header handler in NSAPI SAPI module (header->replace was ignored, send_default_content_type now sends value from php.ini). (Uwe Schindler) +- Fixed bug #26384 (crash in domxslt->process()). (Ilia) - Fixed bug #26355 (flock() doesn't initialize the wouldblock argument). (Ilia) - Fixed bug #26309 (Fixed argument parsing for imageftbbox()). (Ilia) - Fixed bug #26285 (escapeshellarg() uses wrong quotes on windows). (Ilia) Index: php-src/ext/domxml/php_domxml.c diff -u php-src/ext/domxml/php_domxml.c:1.218.2.35 php-src/ext/domxml/php_domxml.c:1.218.2.36 --- php-src/ext/domxml/php_domxml.c:1.218.2.35 Sat Nov 22 09:43:08 2003 +++ php-src/ext/domxml/php_domxml.c Mon Nov 24 21:19:47 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_domxml.c,v 1.218.2.35 2003/11/22 14:43:08 rrichards Exp $ */ +/* $Id: php_domxml.c,v 1.218.2.36 2003/11/25 02:19:47 iliaa Exp $ */ /* TODO * - Support Notation Nodes @@ -729,7 +729,6 @@ xmlDoc *doc = (xmlDoc *) rsrc->ptr; if (doc) { - node_list_wrapper_dtor(doc->children, 1 TSRMLS_CC); node_wrapper_dtor((xmlNodePtr) doc); xmlFreeDoc(doc); }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php