don't leak file handle if fd = 0
This commit is contained in:
parent
6f16e0d3da
commit
23b3e172d5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue