* fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return value
change to setup_overlapped.
This commit is contained in:
parent
65ee447a02
commit
35297ebe0b
|
@ -1,3 +1,8 @@
|
|||
2010-04-06 Christopher Faylor <me+cygwin@cgf.cx>
|
||||
|
||||
* fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return
|
||||
value change to setup_overlapped.
|
||||
|
||||
2010-04-02 Christopher Faylor <me+cygwin@cgf.cx>
|
||||
|
||||
* fhandler.h (fhandler_base::has_ongoing_io): Declare virtual method.
|
||||
|
|
|
@ -143,7 +143,7 @@ fhandler_fifo::open (int flags, mode_t)
|
|||
__seterrno ();
|
||||
res = 0;
|
||||
}
|
||||
else if (!setup_overlapped ())
|
||||
else if (setup_overlapped ())
|
||||
{
|
||||
CloseHandle (h);
|
||||
__seterrno ();
|
||||
|
|
Loading…
Reference in New Issue