summaryrefslogtreecommitdiff
path: root/ext/xsl
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2005-11-15 14:28:40 +0000
committerDmitry Stogov <dmitry@php.net>2005-11-15 14:28:40 +0000
commitd3e0b57e1a8f8e130b21cd3fb17c58065107e561 (patch)
tree8950b936f6f2152de45d3148f9312dedbd723cf6 /ext/xsl
parent3c1932648099e853790a9f679f4abf072e4b27ff (diff)
downloadphp-git-d3e0b57e1a8f8e130b21cd3fb17c58065107e561.tar.gz
Allow recursive calls to __get/__set for different properties
Diffstat (limited to 'ext/xsl')
-rw-r--r--ext/xsl/php_xsl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c
index ed29cbb382..7959e03726 100644
--- a/ext/xsl/php_xsl.c
+++ b/ext/xsl/php_xsl.c
@@ -120,8 +120,7 @@ zend_object_value xsl_objects_new(zend_class_entry *class_type TSRMLS_DC)
intern = emalloc(sizeof(xsl_object));
intern->std.ce = class_type;
- intern->std.in_get = 0;
- intern->std.in_set = 0;
+ intern->std.guards = NULL;
intern->ptr = NULL;
intern->prop_handler = NULL;
intern->parameter = NULL;