don't leak file handle if fd = 0

This commit is contained in:
Michael Jerris 2014-04-30 15:56:36 -04:00
parent 6f16e0d3da
commit 23b3e172d5
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,7 @@ REDIS credis_connect(const char *host, int port, int timeout)
return rhnd;
error:
if (fd > 0)
if (fd >= 0)
close(fd);
cr_delete(rhnd);
return NULL;