diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-09-19 18:47:36 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-09-19 18:47:36 +0000 |
commit | b45944a5b365a772a53734d7eda1bd2144390975 (patch) | |
tree | 43adc0bae8bd0e620be50eeebeb03d03d977712a | |
parent | b4271e8f3f32b7131d144dcd4fc67700bb45283b (diff) | |
download | php-git-b45944a5b365a772a53734d7eda1bd2144390975.tar.gz |
Fixed access to uninitialized value
-rw-r--r-- | ext/dom/php_dom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c index 172ff25426..a6ff59ad1e 100644 --- a/ext/dom/php_dom.c +++ b/ext/dom/php_dom.c @@ -273,6 +273,7 @@ zval *dom_read_property(zval *object, zval *member, int type TSRMLS_DC) if (ret == SUCCESS) { /* ensure we're creating a temporary variable */ retval->refcount = 0; + retval->is_ref = 0; } else { retval = EG(uninitialized_zval_ptr); } |