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:
authormichael-grunder <michael.grunder@gmail.com>2015-03-03 02:24:23 +0300
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 01:16:49 +0300
commit0b269cbb722529bb5a01e0c58f19c5c510f82c1c (patch)
tree945e881ed9749d2c17f3c485297627c89cf83ac0 /cluster_library.c
parent42b81c4f1c24ab848890feaa36f75b4d9bb550f8 (diff)
More RedisCluster fixes
* Properly handle single array as well as variadic arguments for things like RedisCluster::del * Wrapping keys in {} such that Redis and RedisCluster tests can use the same methods (avoiding CROSSSLOT). * Fixed a double-free scenerio in redis_array_impl.c
Diffstat (limited to 'cluster_library.c')
-rw-r--r--cluster_library.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cluster_library.c b/cluster_library.c
index 372d17c2..a9f06dca 100644
--- a/cluster_library.c
+++ b/cluster_library.c
@@ -1961,8 +1961,6 @@ PHPAPI void cluster_mbulk_mget_resp(INTERNAL_FUNCTION_PARAMETERS,
// If we had a failure, pad results with FALSE to indicate failure. Non
// existant keys (e.g. for MGET will come back as NULL)
if(fail) {
- php_error_docref(0 TSRMLS_CC, E_WARNING,
- "Invalid response from Redis for MGET command");
while(mctx->count--) {
add_next_index_bool(mctx->z_multi, 0);
}