Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2010-04-02 20:43:27 +0400
committerChristopher Faylor <me@cgf.cx>2010-04-02 20:43:27 +0400
commit60efdd0c4cb7a0eb6410e08888b24f5265fd0966 (patch)
tree923b6b6c013d10184e16657e26ae7462317d8528 /winsup/cygwin/fhandler_fifo.cc
parent7c972c6354b21f62e39908a7bd3451a291577781 (diff)
* fhandler_fifo.cc (fhandler_fifo::fhandler_fifo): Properly initialize
overlapped part of this class.
Diffstat (limited to 'winsup/cygwin/fhandler_fifo.cc')
-rw-r--r--winsup/cygwin/fhandler_fifo.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc
index b4a78d422..06e110e4c 100644
--- a/winsup/cygwin/fhandler_fifo.cc
+++ b/winsup/cygwin/fhandler_fifo.cc
@@ -22,9 +22,8 @@
#include "shared_info.h"
fhandler_fifo::fhandler_fifo ():
- wait_state (fifo_unknown), dummy_client (NULL)
+ fhandler_base_overlapped (), wait_state (fifo_unknown), dummy_client (NULL)
{
- get_overlapped ()->hEvent = NULL;
need_fork_fixup (true);
}