xace: add hooks + new access codes: Damage extension

This commit is contained in:
Eamon Walsh 2007-09-04 14:01:55 -04:00 committed by Eamon Walsh
parent c9ceb48780
commit ce9e83d913
1 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ ProcDamageCreate (ClientPtr client)
REQUEST_SIZE_MATCH(xDamageCreateReq);
LEGAL_NEW_RESOURCE(stuff->damage, client);
rc = dixLookupDrawable(&pDrawable, stuff->drawable, client, 0,
DixReadAccess);
DixGetAttrAccess|DixReadAccess);
if (rc != Success)
return rc;
@ -295,7 +295,7 @@ ProcDamageAdd (ClientPtr client)
REQUEST_SIZE_MATCH(xDamageAddReq);
VERIFY_REGION(pRegion, stuff->region, client, DixWriteAccess);
rc = dixLookupDrawable(&pDrawable, stuff->drawable, client, 0,
DixReadAccess);
DixWriteAccess);
if (rc != Success)
return rc;