diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2006-12-14 18:27:09 -0500 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-huskies.epoch.ncsc.mil> | 2006-12-14 18:27:09 -0500 |
commit | 5e334f06a1ef89891f9df2a371e4662340bec26b (patch) | |
tree | ef09e836fe96078e91fd16bff00322e6c58bc935 /Xext/panoramiXprocs.c | |
parent | 51b69ff499c05f59cb1e577c4e8abf6f7f283b3e (diff) |
Remove instances of macros VERIFY_GEOMETRABLE and VERIFY_GC.
Diffstat (limited to 'Xext/panoramiXprocs.c')
-rw-r--r-- | Xext/panoramiXprocs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Xext/panoramiXprocs.c b/Xext/panoramiXprocs.c index 2bf94a998..a193c4188 100644 --- a/Xext/panoramiXprocs.c +++ b/Xext/panoramiXprocs.c @@ -531,10 +531,14 @@ int PanoramiXGetGeometry(ClientPtr client) { xGetGeometryReply rep; DrawablePtr pDraw; + int rc; REQUEST(xResourceReq); REQUEST_SIZE_MATCH(xResourceReq); - VERIFY_GEOMETRABLE (pDraw, stuff->id, client); + rc = dixLookupDrawable(&pDraw, stuff->id, client, M_ANY, DixUnknownAccess); + if (rc != Success) + return rc; + rep.type = X_Reply; rep.length = 0; rep.sequenceNumber = client->sequence; |