xserver: Branch 'master'

Eamon Walsh ewalsh at kemper.freedesktop.org
Mon Mar 9 14:30:09 PDT 2009


 randr/rrdispatch.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6544490700051b3b5e88ac1890d71b35634c9100
Author: Eamon Walsh <ewalsh at tycho.nsa.gov>
Date:   Mon Mar 9 17:28:40 2009 -0400

    Correct access mode in call to dixLookupWindow() within RRSelectInput.
    
    Reported by Alan Coopersmith.

diff --git a/randr/rrdispatch.c b/randr/rrdispatch.c
index 5a2ea71..0925875 100644
--- a/randr/rrdispatch.c
+++ b/randr/rrdispatch.c
@@ -76,7 +76,7 @@ ProcRRSelectInput (ClientPtr client)
     int		rc;
 
     REQUEST_SIZE_MATCH(xRRSelectInputReq);
-    rc = dixLookupWindow(&pWin, stuff->window, client, DixWriteAccess);
+    rc = dixLookupWindow(&pWin, stuff->window, client, DixReceiveAccess);
     if (rc != Success)
 	return rc;
     pHead = (RREventPtr *)SecurityLookupIDByType(client,


More information about the xorg-commit mailing list