winemac: Ignore an additional expected error in the clipboard pipe communication code.

Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Ken Thomases 2017-01-13 13:36:22 -06:00 committed by Alexandre Julliard
parent 961703427d
commit 52e20d82f8
1 changed files with 2 additions and 1 deletions

View File

@ -2141,7 +2141,8 @@ void CDECL macdrv_UpdateClipboard(void)
else else
{ {
result = GetLastError(); result = GetLastError();
if (result != ERROR_BROKEN_PIPE && result != ERROR_OPERATION_ABORTED) if (result != ERROR_BROKEN_PIPE && result != ERROR_OPERATION_ABORTED &&
result != ERROR_HANDLES_CLOSED)
WARN("failed to read from pipe: %d\n", result); WARN("failed to read from pipe: %d\n", result);
} }