# HG changeset patch # User Mark Doliner # Date 1089055176 0 # Node ID 0de62d92fb3bce41ad1d52de43e839db1f730dc4 # Parent 7b56b8ba3dff4e3163e942afbda4c80d60468278 [gaim-migrate @ 10276] Thanks Tim. I'd like to point out that I don't think it's possible for listenfd to actually be used uninitialized. gcc just isn't smart enough to realize that. I think. committer: Tailor Script diff -r 7b56b8ba3dff -r 0de62d92fb3b src/network.c --- a/src/network.c Mon Jul 05 19:11:09 2004 +0000 +++ b/src/network.c Mon Jul 05 19:19:36 2004 +0000 @@ -149,7 +149,7 @@ static int gaim_network_do_listen(unsigned short port) { - int listenfd; + int listenfd = -1; const int on = 1; #if HAVE_GETADDRINFO int errnum;