Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'redis_array.c')
-rw-r--r--redis_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_array.c b/redis_array.c
index cda66305..ec30c3f0 100644
--- a/redis_array.c
+++ b/redis_array.c
@@ -993,7 +993,7 @@ PHP_METHOD(RedisArray, mset)
}
/* Grab our key */
- type = zend_hash_get_current_key_ex(h_keys, &key_zstr, &idx, 0);
+ type = zend_hash_get_current_key(h_keys, &key_zstr, &idx);
/* If the key isn't a string, make a string representation of it */
if(type != HASH_KEY_IS_STRING) {