Commit 52e20d82 authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

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

parent 96170342
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment