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>2017-08-01 23:41:48 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2017-08-16 16:58:10 +0300
commit2bf7b2f7142f3fc14ba83260c065ef98e6499b8b (patch)
tree9a2c55f66dd9f4c33f92fc04a5b23ecbc966f541 /cluster_library.c
parentacc84cccb9f590e13a421a87f6fa3c82a1b33ea9 (diff)
Use zend_string to store strings in RedisSock
Following fields were changed: err, prefix, persistent_id, auth and host
Diffstat (limited to 'cluster_library.c')
-rw-r--r--cluster_library.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/cluster_library.c b/cluster_library.c
index 7f6921ed..5a72dc36 100644
--- a/cluster_library.c
+++ b/cluster_library.c
@@ -489,19 +489,16 @@ cluster_set_err(redisCluster *c, char *err, int err_len)
{
// Free our last error
if (c->err != NULL) {
- efree(c->err);
+ zend_string_release(c->err);
+ c->err = NULL;
}
if (err != NULL && err_len > 0) {
+ c->err = zend_string_init(err, err_len, 0);
if (err_len >= sizeof("CLUSTERDOWN") - 1 &&
!memcmp(err, "CLUSTERDOWN", sizeof("CLUSTERDOWN") - 1)
) {
c->clusterdown = 1;
}
- c->err = estrndup(err, err_len);
- c->err_len = err_len;
- } else {
- c->err = NULL;
- c->err_len = 0;
}
}
@@ -819,7 +816,6 @@ PHP_REDIS_API redisCluster *cluster_create(double timeout, double read_timeout,
c->failover = failover;
c->persistent = persistent;
c->err = NULL;
- c->err_len = 0;
/* Set up our waitms based on timeout */
c->waitms = (long)(1000 * timeout);
@@ -849,7 +845,7 @@ PHP_REDIS_API void cluster_free(redisCluster *c) {
efree(c->nodes);
/* Free any error we've got */
- if (c->err) efree(c->err);
+ if (c->err) zend_string_release(c->err);
/* Free structure itself */
efree(c);
@@ -1328,7 +1324,7 @@ PHP_REDIS_API short cluster_find_slot(redisCluster *c, const char *host,
for(i=0;i<REDIS_CLUSTER_SLOTS;i++) {
if(c->master[i] && c->master[i]->sock &&
c->master[i]->sock->port == port &&
- !strcasecmp(c->master[i]->sock->host, host))
+ !strcasecmp(ZSTR_VAL(c->master[i]->sock->host), host))
{
return i;
}