rrichards               Tue Aug 24 09:33:48 2004 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src/ext/xsl    php_xsl.c 
  Log:
  MFH: fix segfault when object cloned
  
http://cvs.php.net/diff.php/php-src/ext/xsl/php_xsl.c?r1=1.22.2.1&r2=1.22.2.2&ty=u
Index: php-src/ext/xsl/php_xsl.c
diff -u php-src/ext/xsl/php_xsl.c:1.22.2.1 php-src/ext/xsl/php_xsl.c:1.22.2.2
--- php-src/ext/xsl/php_xsl.c:1.22.2.1  Wed Jul 28 08:42:16 2004
+++ php-src/ext/xsl/php_xsl.c   Tue Aug 24 09:33:48 2004
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: php_xsl.c,v 1.22.2.1 2004/07/28 12:42:16 chregu Exp $ */
+/* $Id: php_xsl.c,v 1.22.2.2 2004/08/24 13:33:48 rrichards Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -86,6 +86,7 @@
        clone->parameter = NULL;
        clone->hasKeys = intern->hasKeys;
        clone->registerPhpFunctions = 0;
+       clone->node_list = NULL;
 
        ALLOC_HASHTABLE(clone->std.properties);
        zend_hash_init(clone->std.properties, 0, NULL, ZVAL_PTR_DTOR, 0);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to