* lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
+2009-01-07 Daniel P. Berrange <berrange@redhat.com>
+
+ poll: don't return uninitialized
+ * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
+
2009-01-06 Jeremy Olexa <darkside@gentoo.org> (tiny change)
avoid compile failure on AIX 6.1
/* Emulation for poll(2)
Contributed by Paolo Bonzini.
- Copyright 2001, 2002, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
+ Copyright 2001-2003, 2006-2009 Free Software Foundation, Inc.
This file is part of gnulib.
BOOL poll_again;
MSG msg;
char sockbuf[256];
- int rc;
+ int rc = 0;
nfds_t i;
if (nfd < 0 || timeout < -1)