Commit c821504db6fd1f77688d4fb4bcf08b0d03c12e57

Authored by Perry Werneck
1 parent 150ee085
Exists in master and in 1 other branch develop

Fixing unnecessary error messages on windows.

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
server/src/core/windows/pipesource.c
@@ -187,6 +187,7 @@ static void read_input_pipe(IPC3270_PIPE_SOURCE *source) { @@ -187,6 +187,7 @@ static void read_input_pipe(IPC3270_PIPE_SOURCE *source) {
187 switch(GetLastError()) 187 switch(GetLastError())
188 { 188 {
189 case 0: 189 case 0:
  190 + case WSAEWOULDBLOCK:
190 break; 191 break;
191 192
192 case ERROR_IO_PENDING: 193 case ERROR_IO_PENDING: