diff options
author | Christopher Jones <sixd@php.net> | 2013-08-14 20:36:50 -0700 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2013-08-14 20:36:50 -0700 |
commit | 9ad97cd48903ea5454853960f2c14de326e0f624 (patch) | |
tree | 9607bef3020deb8da37bacdb1c14624f4b5d1d2f /ext/simplexml | |
parent | 9d62807190ebda858acbb09ad832c96570a97c40 (diff) | |
download | php-git-9ad97cd48903ea5454853960f2c14de326e0f624.tar.gz |
Reduce (some) compile noise of 'unused variable' and 'may be used uninitialized' warnings.
Diffstat (limited to 'ext/simplexml')
-rw-r--r-- | ext/simplexml/simplexml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index 692516840b..2358f2be65 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -1070,7 +1070,7 @@ static HashTable * sxe_get_prop_hash(zval *object, int is_debug TSRMLS_DC) /* {{ int namelen; int test; char use_iter; - zval *iter_data; + zval *iter_data = NULL; use_iter = 0; |