Cygwin: FIFO: fix a thinko in listen_client_thread

This commit is contained in:
Ken Brown 2019-04-14 19:15:58 +00:00 committed by Corinna Vinschen
parent 1643789517
commit 0c72e766e2
1 changed files with 4 additions and 1 deletions

View File

@ -362,7 +362,10 @@ fhandler_fifo::listen_client_thread ()
fifo_client_unlock ();
goto errout;
}
/* Fall through. */
else
/* Recheck fc_handler[i].state. */
i--;
break;
case fc_connected:
w[i] = fc_handler[i].dummy_evt;
break;