diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-11-15 15:21:47 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-11-15 15:21:47 +0000 |
commit | 8bb39e7dba4afef51968cb42e091afa6a48b0015 (patch) | |
tree | f5713393d637a1ca6068d6dd6c2c2f9584bbfecc /ext/xsl/php_xsl.c | |
parent | dffc74c54eb40957dae56f89ebd6ca4c625fedad (diff) | |
download | php-git-8bb39e7dba4afef51968cb42e091afa6a48b0015.tar.gz |
Allow recursive calls to __get/__set for different properties
Diffstat (limited to 'ext/xsl/php_xsl.c')
-rw-r--r-- | ext/xsl/php_xsl.c | 3 |
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; |