Fixed uninitialized return value.

This commit is contained in:
Armin Novak 2015-04-15 10:38:04 +02:00
parent 449929fc35
commit 5525d9f88b
1 changed files with 1 additions and 1 deletions

View File

@ -842,7 +842,7 @@ int freerdp_tcp_connect_multi(char** hostnames, int count, int port, int timeout
int flags;
int maxfds;
fd_set cfds;
int sockfd;
int sockfd = -1;
int* sockfds;
char port_str[16];
socklen_t optlen;