From: Mathieu Rene Date: Wed, 18 Aug 2010 22:26:57 +0000 (-0400) Subject: esl: init fd_flags to 0 X-Git-Tag: v1.2-rc1~508 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b38909af0efe948d93e4e691d501036cbe33cbd8;p=thirdparty%2Ffreeswitch.git esl: init fd_flags to 0 --- diff --git a/libs/esl/src/esl.c b/libs/esl/src/esl.c index 48be3f93d1..160fe2d759 100644 --- a/libs/esl/src/esl.c +++ b/libs/esl/src/esl.c @@ -614,7 +614,7 @@ ESL_DECLARE(esl_status_t) esl_connect_timeout(esl_handle_t *handle, const char * const char *hval; struct addrinfo hints = { 0 }, *result; #ifndef WIN32 - int fd_flags; + int fd_flags = 0; #else WORD wVersionRequested = MAKEWORD(2, 0); WSADATA wsaData;