summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-12-18 16:41:38 +0000
committerChristopher Faylor <me@cgf.cx>2012-12-18 16:41:38 +0000
commit9574be60a7db94ee5b981975afa37f6e2ae9ac20 (patch)
treee25e0b645cbde944f2b720260c6059ade61a5332
parente3132dba5991af89a50cd695598ff0bd777c4b84 (diff)
downloadcygnal-9574be60a7db94ee5b981975afa37f6e2ae9ac20.tar.gz
cygnal-9574be60a7db94ee5b981975afa37f6e2ae9ac20.tar.bz2
cygnal-9574be60a7db94ee5b981975afa37f6e2ae9ac20.zip
* select.cc (select_stuff::test_and_set): Work around problem of new() not
returning zeroed memory.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/select.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9311dd863..773394f23 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2012-12-18 Christopher Faylor <me.cygwin2012@cgf.cx>
+
+ * select.cc (select_stuff::test_and_set): Work around problem of new()
+ not returning zeroed memory.
+
2012-12-14 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_base::write): Don't attempt to sparsify
diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc
index 4bd652c55..3ba55e9e3 100644
--- a/winsup/cygwin/select.cc
+++ b/winsup/cygwin/select.cc
@@ -295,7 +295,7 @@ select_stuff::test_and_set (int i, fd_set *readfds, fd_set *writefds,
&& ! UNIX_FD_ISSET (i, exceptfds))
return true;
- select_record *s = new select_record;
+ select_record *s = (select_record *) calloc (1, sizeof (select_record));
if (!s)
return false;