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:
parent
961703427d
commit
52e20d82f8
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue