diff options
| -rw-r--r-- | hiredis.c | 2 | ||||
| -rw-r--r-- | test.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| @@ -747,7 +747,7 @@ void redisFree(redisContext *c) {      if (c->privdata && c->free_privdata)          c->free_privdata(c->privdata); -    if (c->funcs->free_privctx) +    if (c->funcs && c->funcs->free_privctx)          c->funcs->free_privctx(c->privctx);      memset(c, 0xff, sizeof(*c)); @@ -1999,7 +1999,7 @@ static void connectCallback(redisAsyncContext *c, int status) {      }      else if (t->testno == ASTEST_ISSUE_931_PING)      { -        status = redisAsyncCommand(c, commandCallback, NULL, "PING"); +        redisAsyncCommand(c, commandCallback, NULL, "PING");      }  }  static void disconnectCallback(const redisAsyncContext *c, int status) { | 
