diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2006-12-15 17:43:39 -0500 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-huskies.epoch.ncsc.mil> | 2006-12-15 17:43:39 -0500 |
commit | 48ff33a1770f3684cd50184db8f1944a456d9974 (patch) | |
tree | e18a709abe7c8551601e8cbf9ccb55b6bd843df8 /src | |
parent | 120c854f185c1e7711cf0dee19303fdb8894d49d (diff) |
Convert callers of LookupWindow() to dixLookupWindow().
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_mergedfb.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/radeon_mergedfb.c b/src/radeon_mergedfb.c index 820ba4ba..51b17207 100644 --- a/src/radeon_mergedfb.c +++ b/src/radeon_mergedfb.c @@ -1008,8 +1008,9 @@ RADEONProcXineramaGetState(ClientPtr client) register int n; REQUEST_SIZE_MATCH(xPanoramiXGetStateReq); - pWin = LookupWindow(stuff->window, client); - if(!pWin) return BadWindow; + n = dixLookupWindow(&pWin, stuff->window, client, DixUnknownAccess); + if (n != Success) + return n; rep.type = X_Reply; rep.length = 0; @@ -1033,8 +1034,9 @@ RADEONProcXineramaGetScreenCount(ClientPtr client) register int n; REQUEST_SIZE_MATCH(xPanoramiXGetScreenCountReq); - pWin = LookupWindow(stuff->window, client); - if(!pWin) return BadWindow; + n = dixLookupWindow(&pWin, stuff->window, client, DixUnknownAccess); + if (n != Success) + return n; rep.type = X_Reply; rep.length = 0; @@ -1058,8 +1060,9 @@ RADEONProcXineramaGetScreenSize(ClientPtr client) register int n; REQUEST_SIZE_MATCH(xPanoramiXGetScreenSizeReq); - pWin = LookupWindow (stuff->window, client); - if(!pWin) return BadWindow; + n = dixLookupWindow(&pWin, stuff->window, client, DixUnknownAccess); + if (n != Success) + return n; rep.type = X_Reply; rep.length = 0; |