Cygwin: FIFO: add missing unlock

There was a missing call to reader_opening_unlock on one of the error
exits in fhandler_fifo::open.
This commit is contained in:
Ken Brown 2020-05-19 10:25:43 -04:00
parent fe937e21ad
commit bf07202e16
1 changed files with 1 additions and 0 deletions

View File

@ -1020,6 +1020,7 @@ err_close_reader:
saved_errno = get_errno ();
close ();
set_errno (saved_errno);
reader_opening_unlock ();
return 0;
err_close_cancel_evt:
NtClose (cancel_evt);