[PATCH 08/14] Cygwin: FIFO: fix fifo_client_handler::close

Ken Brown kbrown@cornell.edu
Sun Apr 14 19:16:00 GMT 2019


Make sure that fhandler_base::close rather than fhandler_fifo::close
is called on the fhandler.  Also, delete the fhandler, since we
allocated it.
---
 winsup/cygwin/fhandler_fifo.cc | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc
index 2da579b95..f9796f300 100644
--- a/winsup/cygwin/fhandler_fifo.cc
+++ b/winsup/cygwin/fhandler_fifo.cc
@@ -809,7 +809,10 @@ fifo_client_handler::close ()
   int res = 0;
 
   if (fh)
-    res = fh->close ();
+    {
+      res = fh->fhandler_base::close ();
+      delete fh;
+    }
   if (connect_evt)
     CloseHandle (connect_evt);
   if (dummy_evt)
-- 
2.17.0



More information about the Cygwin-patches mailing list