From: Nikita Popov Date: Sat, 9 Mar 2013 19:15:00 +0000 (+0100) Subject: Fix get_property_ptr_ptr declaration in simplexml X-Git-Tag: php-5.5.0beta1~52^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a59b211b2ddc84a2cca572409c4a66b2ed487e0e;p=php Fix get_property_ptr_ptr declaration in simplexml A new parameter was added to the API and simplexml wasn't adjusted, thus causing crashes. --- 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;