summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Brewer <jzb0012@auburn.edu>2018-03-27 13:44:01 -0500
committerJustin Brewer <jzb0012@auburn.edu>2018-04-30 21:45:13 -0500
commit54acc8f08759713338b6cb6c94916438bbd91b80 (patch)
treeb53f9b13f6cb66c130c331abf6d1f88d5c591dcc
parent546d9415e1806565b6c8f413c8873726c6aa049f (diff)
Remove redundant zero stores
calloc is guaranteed to provide a zero-initialized buffer. There is no need to set fields to zero explicitly. Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
-rw-r--r--hiredis.c6
-rw-r--r--read.c2
2 files changed, 0 insertions, 8 deletions
diff --git a/hiredis.c b/hiredis.c
index f119d50..8eabac0 100644
--- a/hiredis.c
+++ b/hiredis.c
@@ -596,14 +596,8 @@ static redisContext *redisContextInit(void) {
if (c == NULL)
return NULL;
- c->err = 0;
- c->errstr[0] = '\0';
c->obuf = sdsempty();
c->reader = redisReaderCreate();
- c->tcp.host = NULL;
- c->tcp.source_addr = NULL;
- c->unix_sock.path = NULL;
- c->timeout = NULL;
if (c->obuf == NULL || c->reader == NULL) {
redisFree(c);
diff --git a/read.c b/read.c
index 061bbda..4baa74e 100644
--- a/read.c
+++ b/read.c
@@ -420,8 +420,6 @@ redisReader *redisReaderCreateWithFunctions(redisReplyObjectFunctions *fn) {
if (r == NULL)
return NULL;
- r->err = 0;
- r->errstr[0] = '\0';
r->fn = fn;
r->buf = sdsempty();
r->maxbuf = REDIS_READER_MAX_BUF;