diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2008-01-16 14:24:22 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2008-01-16 14:24:22 +0100 |
commit | e46f6ddeccd082b2d507a1e8b57ea30e6b0a2c83 (patch) | |
tree | e5b8774b2664c12866001c2d487788e73af82e67 | |
parent | 7a0d16ef0a103bcb25fa8a20322685f017aaf5a3 (diff) |
Yet another Xv extension byte swapping fix.
-rw-r--r-- | Xext/xvdisp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Xext/xvdisp.c b/Xext/xvdisp.c index 237ad51c0..de0128e14 100644 --- a/Xext/xvdisp.c +++ b/Xext/xvdisp.c @@ -1588,6 +1588,7 @@ SProcXvSetPortAttribute(ClientPtr client) swaps(&stuff->length, n); swapl(&stuff->port, n); swapl(&stuff->attribute, n); + swapl(&stuff->value, n); return XvProcVector[xv_SetPortAttribute](client); } |