From 8606aeb9b2ab2dafc11e64436db4d3a7e67dbcc0 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 15 Feb 2007 22:23:16 -0800 Subject: [PATCH] RRConfigureOutputProperty is a variable length request. Replace REQUEST_SIZE_MATCH with REQUEST_AT_LEAST_SIZE --- randr/rrproperty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/randr/rrproperty.c b/randr/rrproperty.c index 916caf030..edfed1f47 100644 --- a/randr/rrproperty.c +++ b/randr/rrproperty.c @@ -410,7 +410,7 @@ ProcRRConfigureOutputProperty (ClientPtr client) RROutputPtr output; int num_valid; - REQUEST_SIZE_MATCH(xRRConfigureOutputPropertyReq); + REQUEST_AT_LEAST_SIZE(xRRConfigureOutputPropertyReq); output = LookupOutput (client, stuff->output, DixReadAccess);