From 8332a88393cc79b6f7d431859e5bbf157d8c1ea3 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Wed, 9 Apr 2014 22:56:16 -0700 Subject: File descriptors can be 0 --- net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net.c b/net.c index f7d291b..9fe80bb 100644 --- a/net.c +++ b/net.c @@ -55,7 +55,7 @@ void __redisSetError(redisContext *c, int type, const char *str); static void redisContextCloseFd(redisContext *c) { - if (c && c->fd > 0) { + if (c && c->fd >= 0) { close(c->fd); c->fd = -1; } -- cgit v1.2.3