Unverified Commit be6bb39f authored by Code Hz's avatar Code Hz Committed by GitHub
Browse files

Fix Invalid argument after redisAsyncConnectUnix

parent e6e5a2cb
......@@ -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) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment