rtl_tcp: Initialize listensocket

Older versions of GCC will complain that it can be used
uninitialized - which is not the case, but it breaks our Jenkins
build as we build with -Werror.
This commit is contained in:
Steve Markgraf 2020-02-26 23:52:02 +01:00
parent 8985b45e1f
commit f427883320
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ int main(int argc, char **argv)
void *status;
struct timeval tv = {1,0};
struct linger ling = {1,0};
SOCKET listensocket;
SOCKET listensocket = 0;
socklen_t rlen;
fd_set readfds;
u_long blockmode = 1;