From e1bbe46cbfb7fee0c9357bc777bad814f53d083f Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 18 Jul 2025 12:38:53 +0200 Subject: [PATCH] randr: drop swapping request length fields The request struct's length fields aren't used anymore - we have the client->req_len field instead, which also is bigreq-compatible. Signed-off-by: Enrico Weigelt, metux IT consult --- randr/rrsdispatch.c | 1 - 1 file changed, 1 deletion(-) diff --git a/randr/rrsdispatch.c b/randr/rrsdispatch.c index c163d63178..b42eec7f36 100644 --- a/randr/rrsdispatch.c +++ b/randr/rrsdispatch.c @@ -116,7 +116,6 @@ SProcRRGetScreenResourcesCurrent(ClientPtr client) REQUEST(xRRGetScreenResourcesCurrentReq); REQUEST_SIZE_MATCH(xRRGetScreenResourcesCurrentReq); - swaps(&stuff->length); swapl(&stuff->window); return ProcRRGetScreenResourcesCurrent(client); }