summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArnon Gilboa <agilboa@redhat.com>2012-03-01 13:06:24 +0200
committerArnon Gilboa <agilboa@redhat.com>2012-03-01 14:16:49 +0200
commitf605e2774d74d879f847b301705dfeb2330d1167 (patch)
tree7283bb576b6c9eebb2c39ef8e1be297c1545204c /client
parentd2cd7b2b020da1dc7efe778ddfc4525e31784dbb (diff)
downloadspice-f605e2774d74d879f847b301705dfeb2330d1167.tar.gz
spice-f605e2774d74d879f847b301705dfeb2330d1167.tar.xz
spice-f605e2774d74d879f847b301705dfeb2330d1167.zip
client/windows: fix SetClipboardViewer error handling rhbz#786554
MSDN says the following about SetClipboardViewer(): "If an error occurs or there are no other windows in the clipboard viewer chain, the return value is NULL". Seems like the buggy case was "no other windows in the clipboard viewer chain", which explains the 3rd party clipboard manager workaround detailed in the bug description. It also seems like SetClipboardViewer() does not clear the error state on succcess. Calling SetLastError(0) before SetClipboardViewer() seems to solves this issue. Since we could not reproduce the bug on our env, the customer has verified on several of their systems that a private build resolved the issue.
Diffstat (limited to 'client')
-rw-r--r--client/windows/platform.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/client/windows/platform.cpp b/client/windows/platform.cpp
index 2b719f21..d3417e39 100644
--- a/client/windows/platform.cpp
+++ b/client/windows/platform.cpp
@@ -249,6 +249,7 @@ static void create_message_wind()
{
WNDCLASSEX wclass;
ATOM class_atom;
+ DWORD err;
const LPCWSTR class_name = L"spicec_platform_wclass";
@@ -272,9 +273,9 @@ static void create_message_wind()
if (!(platform_win = CreateWindow(class_name, L"", 0, 0, 0, 0, 0, NULL, NULL, instance, NULL))) {
THROW("create message window failed");
}
-
- if (!(next_clipboard_viewer_win = SetClipboardViewer(platform_win)) && GetLastError()) {
- THROW("set clipboard viewer failed");
+ SetLastError(0);
+ if (!(next_clipboard_viewer_win = SetClipboardViewer(platform_win)) && (err = GetLastError())) {
+ THROW("set clipboard viewer failed %u", err);
}
if (!(clipboard_event = CreateEvent(NULL, FALSE, FALSE, NULL))) {
THROW("create clipboard event failed");