diff options
author | Matt Turner <mattst88@gmail.com> | 2011-09-25 14:06:47 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2011-09-25 14:06:47 -0400 |
commit | b5438423ad29338429321cd29118a66b715cdcac (patch) | |
tree | 95414700aa4d26cd953c50fe35eaad9060bb043a /src | |
parent | 4ae8aac35b7209576eaeb64347470d3145b27832 (diff) |
Fix wrong-sized swaps
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vmwarexinerama.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/vmwarexinerama.c b/src/vmwarexinerama.c index 3476f43..371c7b1 100644 --- a/src/vmwarexinerama.c +++ b/src/vmwarexinerama.c @@ -134,7 +134,6 @@ VMwareXineramaGetState(ClientPtr client) if(client->swapped) { swaps (&rep.sequenceNumber, n); swapl (&rep.length, n); - swaps (&rep.state, n); } WriteToClient(client, sizeof(xPanoramiXGetStateReply), (char *)&rep); return client->noClientException; @@ -186,7 +185,6 @@ VMwareXineramaGetScreenCount(ClientPtr client) if(client->swapped) { swaps(&rep.sequenceNumber, n); swapl(&rep.length, n); - swaps(&rep.ScreenCount, n); } WriteToClient(client, sizeof(xPanoramiXGetScreenCountReply), (char *)&rep); return client->noClientException; @@ -239,8 +237,8 @@ VMwareXineramaGetScreenSize(ClientPtr client) if(client->swapped) { swaps(&rep.sequenceNumber, n); swapl(&rep.length, n); - swaps(&rep.width, n); - swaps(&rep.height, n); + swapl(&rep.width, n); + swapl(&rep.height, n); } WriteToClient(client, sizeof(xPanoramiXGetScreenSizeReply), (char *)&rep); return client->noClientException; |