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_cluster.h')
-rw-r--r--redis_cluster.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/redis_cluster.h b/redis_cluster.h
index e4fa9523..45bc288b 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -40,15 +40,6 @@
clusterFoldItem *_item = c->multi_head, *_tmp; \
while(_item) { \
_tmp = _item->next; \
- if(_item->ctx) { \
- zval **z_arr = (zval**)_item->ctx; int i=0; \
- while(z_arr[i]!=NULL) { \
- zval_dtor(z_arr[i]); \
- efree(z_arr[i]); \
- i++; \
- } \
- efree(z_arr); \
- } \
efree(_item); \
_item = _tmp; \
} \