mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Save major/minor opcodes in ClientRec for RecordAReply
The record extension needs the major and minor opcodes in the reply hook, but the request buffer may have been freed by the time the hook is invoked. Saving the request major and minor codes as the request is executed avoids fetching from the defunct request buffer. This patch also eliminates the public MinorOpcodeOfRequest function, inlining it into Dispatch. Usages of that function have been replaced with direct access to the new ClientRec field. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Jamey Sharp <jamey@minilop.net>
This commit is contained in:
@@ -552,7 +552,7 @@ RecordARequest(ClientPtr client)
|
||||
}
|
||||
else /* extension, check minor opcode */
|
||||
{
|
||||
int minorop = MinorOpcodeOfRequest(client);
|
||||
int minorop = client->minorOp;
|
||||
int numMinOpInfo;
|
||||
RecordMinorOpPtr pMinorOpInfo = pRCAP->pRequestMinOpInfo;
|
||||
|
||||
@@ -609,12 +609,9 @@ RecordAReply(CallbackListPtr *pcbl, pointer nulldata, pointer calldata)
|
||||
RecordContextPtr pContext;
|
||||
RecordClientsAndProtocolPtr pRCAP;
|
||||
int eci;
|
||||
int majorop;
|
||||
ReplyInfoRec *pri = (ReplyInfoRec *)calldata;
|
||||
ClientPtr client = pri->client;
|
||||
REQUEST(xReq);
|
||||
|
||||
majorop = stuff->reqType;
|
||||
for (eci = 0; eci < numEnabledContexts; eci++)
|
||||
{
|
||||
pContext = ppAllContexts[eci];
|
||||
@@ -622,6 +619,7 @@ RecordAReply(CallbackListPtr *pcbl, pointer nulldata, pointer calldata)
|
||||
NULL);
|
||||
if (pRCAP)
|
||||
{
|
||||
int majorop = client->majorOp;
|
||||
if (pContext->continuedReply)
|
||||
{
|
||||
RecordAProtocolElement(pContext, client, XRecordFromServer,
|
||||
@@ -642,7 +640,7 @@ RecordAReply(CallbackListPtr *pcbl, pointer nulldata, pointer calldata)
|
||||
}
|
||||
else /* extension, check minor opcode */
|
||||
{
|
||||
int minorop = MinorOpcodeOfRequest(client);
|
||||
int minorop = client->minorOp;
|
||||
int numMinOpInfo;
|
||||
RecordMinorOpPtr pMinorOpInfo = pRCAP->pReplyMinOpInfo;
|
||||
assert (pMinorOpInfo);
|
||||
|
||||
Reference in New Issue
Block a user