summaryrefslogtreecommitdiff
path: root/ext/simplexml
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2013-03-09 20:15:00 +0100
committerNikita Popov <nikic@php.net>2013-03-09 20:15:00 +0100
commita59b211b2ddc84a2cca572409c4a66b2ed487e0e (patch)
tree6930686f5d74d3faa3f112229e6fe522d7fa1cc6 /ext/simplexml
parent9d816ba1d3df25969c2a9f6e659201d2caaf8af3 (diff)
downloadphp-git-a59b211b2ddc84a2cca572409c4a66b2ed487e0e.tar.gz
Fix get_property_ptr_ptr declaration in simplexml
A new parameter was added to the API and simplexml wasn't adjusted, thus causing crashes.
Diffstat (limited to 'ext/simplexml')
-rw-r--r--ext/simplexml/simplexml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c
index 692516840b..baae3842c2 100644
--- a/ext/simplexml/simplexml.c
+++ b/ext/simplexml/simplexml.c
@@ -694,7 +694,7 @@ static void sxe_dimension_write(zval *object, zval *offset, zval *value TSRMLS_D
}
/* }}} */
-static zval** sxe_property_get_adr(zval *object, zval *member, const zend_literal *key TSRMLS_DC) /* {{{ */
+static zval** sxe_property_get_adr(zval *object, zval *member, int fetch_type, const zend_literal *key TSRMLS_DC) /* {{{ */
{
php_sxe_object *sxe;
xmlNodePtr node;