diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-09-19 18:47:56 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-09-19 18:47:56 +0000 |
commit | 5eb6b78c90eb2ec58b3578bb51e90e946835691f (patch) | |
tree | 4d2dadbd39240583033b365231dcf57bf87ec5e4 /ext/dom/php_dom.c | |
parent | e26ae04d5ff0be7d58f30e31137bb337360bec41 (diff) | |
download | php-git-5eb6b78c90eb2ec58b3578bb51e90e946835691f.tar.gz |
Fixed access to uninitialized value
Diffstat (limited to 'ext/dom/php_dom.c')
-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 22c07dce37..c972736d6f 100644 --- a/ext/dom/php_dom.c +++ b/ext/dom/php_dom.c @@ -295,6 +295,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); } |