* fhandler_fifo.cc (fhandler_fifo::fhandler_fifo): Properly initialize

overlapped part of this class.
This commit is contained in:
Christopher Faylor
2010-04-02 16:43:27 +00:00
parent 7c972c6354
commit 60efdd0c4c
2 changed files with 6 additions and 2 deletions

View File

@ -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);
}