mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 08:05:37 +00:00
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…
x
Reference in New Issue
Block a user