diff options
author | Xinchen Hui <laruence@php.net> | 2012-10-30 11:09:53 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2012-10-30 11:10:26 +0800 |
commit | 3342e7276c4d0ff0a8546c2f16eb706d6aadf185 (patch) | |
tree | c558d8a8554369a406ae1f132c7234aeff84f16a /ext/libxml/libxml.c | |
parent | 4c08ee069cc1e299f5cc09c198f97bad30293cb1 (diff) | |
parent | 2f1c4064f8fd971166df3099729e74e0ecb5d6bc (diff) | |
download | php-git-3342e7276c4d0ff0a8546c2f16eb706d6aadf185.tar.gz |
Merge branch 'PHP-5.3' into PHP-5.4
Diffstat (limited to 'ext/libxml/libxml.c')
-rw-r--r-- | ext/libxml/libxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c index a39c875b2c..c97ee6724d 100644 --- a/ext/libxml/libxml.c +++ b/ext/libxml/libxml.c @@ -918,7 +918,7 @@ static PHP_FUNCTION(libxml_set_streams_context) { zval *arg; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &arg) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &arg) == FAILURE) { return; } if (LIBXML(stream_context)) { |