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

View File

@ -2141,7 +2141,8 @@ void CDECL macdrv_UpdateClipboard(void)
else
{
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);
}