diff options
author | Eric Anholt <eric@anholt.net> | 2007-02-01 15:10:29 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-02-01 15:10:29 -0800 |
commit | 4f2f3233c808fd86bf9f6c09937feda9e0b367fd (patch) | |
tree | c03f7e2cab141fee3af70f269410ce4b8e1cb62c /randr/rrcrtc.c | |
parent | 8274ea6aa97b06a56b7468c3908894c0ff72b687 (diff) |
Fix the size expectations of xRRSetCrtcGamma.
It was using REQUEST_SIZE_MATCH (client request length must equal request size)
rather than REQUEST_AT_LEAST_SIZE (client request length must be at least
big enough for request size), and this request has data following the request
structure.
Diffstat (limited to 'randr/rrcrtc.c')
-rw-r--r-- | randr/rrcrtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/randr/rrcrtc.c b/randr/rrcrtc.c index c84ec6178..fdd1d429d 100644 --- a/randr/rrcrtc.c +++ b/randr/rrcrtc.c @@ -870,7 +870,7 @@ ProcRRSetCrtcGamma (ClientPtr client) unsigned long len; CARD16 *red, *green, *blue; - REQUEST_SIZE_MATCH(xRRSetCrtcGammaReq); + REQUEST_AT_LEAST_SIZE(xRRSetCrtcGammaReq); crtc = LookupCrtc (client, stuff->crtc, DixWriteAccess); if (!crtc) return RRErrorBase + BadRRCrtc; |