summaryrefslogtreecommitdiff
path: root/example-libev.c
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-11-01 11:11:43 +0100
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-11-01 11:11:43 +0100
commitb028dda3593598ab7664c2d70846c50405b534ad (patch)
treeb2fd4636ef143c78d31686b27e0d0d67c51c331a /example-libev.c
parente16340f2dba2df4e997a0f4f03b197cc814ab9fa (diff)
Return from getCallback if there is no reply
Diffstat (limited to 'example-libev.c')
-rw-r--r--example-libev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/example-libev.c b/example-libev.c
index 3495b2f..709c9ea 100644
--- a/example-libev.c
+++ b/example-libev.c
@@ -7,6 +7,7 @@
#include "adapters/libev.h"
void getCallback(redisAsyncContext *c, redisReply *reply, void *privdata) {
+ if (reply == NULL) return;
printf("argv[%s]: %s\n", (char*)privdata, reply->str);
/* Disconnect after receiving the reply to GET */