diff options
author | Nikita Popov <nikic@php.net> | 2014-12-23 22:00:18 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2014-12-26 21:06:18 +0100 |
commit | 2d212b426a22c9d9f357be0a6832ced9a3fff073 (patch) | |
tree | f1d0ec807cca7add558b6282b85e136e2e5a9bfd /ext/soap/php_schema.c | |
parent | 3d12fc796b0048ab498f82ac497476129a7976e7 (diff) | |
download | php-git-2d212b426a22c9d9f357be0a6832ced9a3fff073.tar.gz |
Drop duplicate arg from hash_get_current_key_ex
Diffstat (limited to 'ext/soap/php_schema.c')
-rw-r--r-- | ext/soap/php_schema.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/php_schema.c b/ext/soap/php_schema.c index 9eecd35548..fce5f82443 100644 --- a/ext/soap/php_schema.c +++ b/ext/soap/php_schema.c @@ -2164,7 +2164,7 @@ static void schema_attributegroup_fixup(sdlCtx *ctx, sdlAttributePtr attr, HashT newAttr->extraAttributes = ht; } - zend_hash_get_current_key_ex(tmp->attributes, &_key, NULL, 0, &tmp->attributes->nInternalPointer); + zend_hash_get_current_key(tmp->attributes, &_key, NULL); zend_hash_add_ptr(ht, _key, newAttr); zend_hash_move_forward(tmp->attributes); @@ -2172,7 +2172,7 @@ static void schema_attributegroup_fixup(sdlCtx *ctx, sdlAttributePtr attr, HashT zend_ulong index; schema_attributegroup_fixup(ctx, tmp_attr, ht); - zend_hash_get_current_key(tmp->attributes, NULL, &index, 0); + zend_hash_get_current_key(tmp->attributes, NULL, &index); zend_hash_index_del(tmp->attributes, index); } } |