xserver: Branch 'master'

Keith Packard keithp at kemper.freedesktop.org
Tue May 18 15:43:06 PDT 2010


 Xext/sync.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 673eb707ce6737284c4886265ba149c5587a74e2
Author: Jamey Sharp <jamey at minilop.net>
Date:   Sat May 15 12:06:25 2010 -0700

    SyncSendAlarmNotifyEvents: check the correct client's clientGone flag.
    
    Signed-off-by: Jamey Sharp <jamey at minilop.net>
    Reviewed-by: Keith Packard <keithp at keithp.com>
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/Xext/sync.c b/Xext/sync.c
index 0534728..d46087a 100644
--- a/Xext/sync.c
+++ b/Xext/sync.c
@@ -396,7 +396,7 @@ SyncSendAlarmNotifyEvents(SyncAlarm *pAlarm)
     /* send to other interested clients */
     for (pcl = pAlarm->pEventClients; pcl; pcl = pcl->next)
     {
-	if (!pAlarm->client->clientGone)
+	if (!pcl->client->clientGone)
 	{
 	    ane.sequenceNumber = pcl->client->sequence;
 	    WriteEventsToClient(pcl->client, 1, (xEvent *) &ane);


More information about the xorg-commit mailing list