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:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2016-11-20 20:27:51 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2016-11-20 22:07:24 +0300
commit3d7da1fdb6d1f8ee96385b0ff144c2c8829a32ba (patch)
tree78728f1b4dcba0fe29064e9d9efa190bfaf54a15 /redis_array_impl.c
parent2559f729804814c6c351530aa534172055dba001 (diff)
refactoring
Diffstat (limited to 'redis_array_impl.c')
-rw-r--r--redis_array_impl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/redis_array_impl.c b/redis_array_impl.c
index 9f655646..2bdba842 100644
--- a/redis_array_impl.c
+++ b/redis_array_impl.c
@@ -80,6 +80,7 @@ ra_load_hosts(RedisArray *ra, HashTable *hosts, long retry_interval, zend_bool b
#endif
object_init_ex(&ra->redis[i], redis_ce);
call_user_function(&redis_ce->function_table, &ra->redis[i], &z_cons, &z_ret, 0, NULL);
+ zval_dtor(&z_ret);
/* create socket */
redis_sock = redis_sock_create(host, host_len, port, ra->connect_timeout, ra->pconnect, NULL, retry_interval, b_lazy_connect);
@@ -341,6 +342,8 @@ RedisArray *ra_load_array(const char *name TSRMLS_DC) {
zval_dtor(&z_params_pconnect);
zval_dtor(&z_params_connect_timeout);
zval_dtor(&z_params_lazy_connect);
+ zval_dtor(&z_dist);
+ zval_dtor(&z_fun);
return ra;
}
@@ -923,6 +926,7 @@ ra_move_zset(const char *key, int key_len, zval *z_from, zval *z_to, long ttl TS
/* cleanup */
zval_dtor(&z_fun_zadd);
+ zval_dtor(&z_ret_dest);
zval_dtor(&z_ret);
/* Free the array itself */
@@ -947,6 +951,8 @@ ra_move_string(const char *key, int key_len, zval *z_from, zval *z_to, long ttl
if(Z_TYPE(z_ret) != IS_STRING) { /* key not found or replaced */
/* TODO: report? */
+ zval_dtor(&z_args[0]);
+ zval_dtor(&z_ret);
return 0;
}
@@ -1038,6 +1044,7 @@ ra_move_collection(const char *key, int key_len, zval *z_from, zval *z_to,
if(Z_TYPE(z_ret) != IS_ARRAY) { /* key not found or replaced */
/* TODO: report? */
+ zval_dtor(&z_ret);
return 0;
}