mirror of
https://github.com/fluencelabs/redis
synced 2025-05-03 14:32:14 +00:00
fix not call va_end when syncWrite() failed
fix not call va_end when syncWrite() failed in sendSynchronousCommand()
This commit is contained in:
parent
5f9b9e1194
commit
2b99d77a57
@ -1330,7 +1330,8 @@ char *sendSynchronousCommand(int flags, int fd, ...) {
|
|||||||
cmd = sdscat(cmd,arg);
|
cmd = sdscat(cmd,arg);
|
||||||
}
|
}
|
||||||
cmd = sdscatlen(cmd,"\r\n",2);
|
cmd = sdscatlen(cmd,"\r\n",2);
|
||||||
|
va_end(ap);
|
||||||
|
|
||||||
/* Transfer command to the server. */
|
/* Transfer command to the server. */
|
||||||
if (syncWrite(fd,cmd,sdslen(cmd),server.repl_syncio_timeout*1000)
|
if (syncWrite(fd,cmd,sdslen(cmd),server.repl_syncio_timeout*1000)
|
||||||
== -1)
|
== -1)
|
||||||
@ -1340,7 +1341,6 @@ char *sendSynchronousCommand(int flags, int fd, ...) {
|
|||||||
strerror(errno));
|
strerror(errno));
|
||||||
}
|
}
|
||||||
sdsfree(cmd);
|
sdsfree(cmd);
|
||||||
va_end(ap);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read the reply from the server. */
|
/* Read the reply from the server. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user