summaryrefslogtreecommitdiff
path: root/hiredis.c
diff options
context:
space:
mode:
authoramallia <me@antoniomallia.it>2017-06-15 20:56:12 +0100
committeramallia <me@antoniomallia.it>2017-06-15 20:59:37 +0100
commit3c32344a41b1c9a7d6daccc2c54cf70b4dfd4d5b (patch)
tree22cbcd7fb62507192413961282bb6a03107f62c3 /hiredis.c
parent97cd8157f74674c722dd30360caac1f498fa72ef (diff)
Small fixes
Diffstat (limited to 'hiredis.c')
-rw-r--r--hiredis.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hiredis.c b/hiredis.c
index 18bdfc9..3a7ab11 100644
--- a/hiredis.c
+++ b/hiredis.c
@@ -1007,9 +1007,8 @@ void *redisvCommand(redisContext *c, const char *format, va_list ap) {
void *redisCommand(redisContext *c, const char *format, ...) {
va_list ap;
- void *reply = NULL;
va_start(ap,format);
- reply = redisvCommand(c,format,ap);
+ void *reply = redisvCommand(c,format,ap);
va_end(ap);
return reply;
}