mirror of
https://github.com/reactos/wine.git
synced 2024-11-27 13:40:50 +00:00
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
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user