Skip to content

Commit

Permalink
Fixed uninitialized return value.
Browse files Browse the repository at this point in the history
  • Loading branch information
akallabeth committed Apr 15, 2015
1 parent 449929f commit 5525d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libfreerdp/core/tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5525d9f

Please sign in to comment.