diff options
author | Christopher Faylor <me@cgf.cx> | 2010-04-02 16:43:27 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2010-04-02 16:43:27 +0000 |
commit | 60efdd0c4cb7a0eb6410e08888b24f5265fd0966 (patch) | |
tree | 923b6b6c013d10184e16657e26ae7462317d8528 /winsup/cygwin/fhandler_fifo.cc | |
parent | 7c972c6354b21f62e39908a7bd3451a291577781 (diff) | |
download | newlib-60efdd0c4cb7a0eb6410e08888b24f5265fd0966.zip newlib-60efdd0c4cb7a0eb6410e08888b24f5265fd0966.tar.gz newlib-60efdd0c4cb7a0eb6410e08888b24f5265fd0966.tar.bz2 |
* 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.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc index b4a78d4..06e110e 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); } |