diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-10-25 23:53:43 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-10-26 10:41:51 -0700 |
commit | 286fa9bf9b4ffb0f9dbd3f1cae46ddcb27ee9318 (patch) | |
tree | b3d29be214a5c4b593195b97134ce10469eb8791 | |
parent | dc054fefc586c5b404fe0f949dbd456e5267c647 (diff) |
XWin: windowswm: Correct byte swapping in event notifications
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r-- | hw/xwin/winwindowswm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/xwin/winwindowswm.c b/hw/xwin/winwindowswm.c index 403c859e7..577614db6 100644 --- a/hw/xwin/winwindowswm.c +++ b/hw/xwin/winwindowswm.c @@ -629,9 +629,11 @@ winWindowsWMExtensionInit (void) NULL, StandardMinorOpcode))) { + size_t i; WMReqCode = (unsigned char)extEntry->base; WMErrorBase = extEntry->errorBase; WMEventBase = extEntry->eventBase; - EventSwapVector[WMEventBase] = (EventSwapPtr) SNotifyEvent; + for (i=0; i < WindowsWMNumberEvents; i++) + EventSwapVector[WMEventBase + i] = (EventSwapPtr) SNotifyEvent; } } |