diff options
author | Code Hz <codehz@users.noreply.github.com> | 2019-01-28 21:54:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-28 21:54:42 +0800 |
commit | be6bb39fda8cd1fe300e9dfb0fd4d1e598c37435 (patch) | |
tree | 32ae5eaafe4081c5ae5136feb74f7d3179931e5e /net.c | |
parent | e6e5a2cba66edfb4b422f996640672e056328380 (diff) |
Fix Invalid argument after redisAsyncConnectUnix
Diffstat (limited to 'net.c')
-rw-r--r-- | net.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -500,6 +500,7 @@ int redisContextConnectUnix(redisContext *c, const char *path, const struct time return REDIS_ERR; sa = (struct sockaddr_un*)(c->saddr = malloc(sizeof(struct sockaddr_un))); + c->addrlen = sizeof(struct sockaddr_un); sa->sun_family = AF_UNIX; strncpy(sa->sun_path,path,sizeof(sa->sun_path)-1); if (connect(c->fd, (struct sockaddr*)sa, sizeof(*sa)) == -1) { |