xserver: Branch 'master'

Adam Jackson ajax at kemper.freedesktop.org
Fri Feb 22 12:25:31 PST 2008


 xfixes/saveset.c |    2 +-
 xfixes/select.c  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 060a66b6e2feddba43ed207b6fcf2cf1f7fe39fd
Author: Adam Jackson <ajax at redhat.com>
Date:   Mon Dec 24 15:55:58 2007 -0500

    Normalize swapped dispatch for Fixes{ChangeSaveSet,SelectSelectionInput}

diff --git a/xfixes/saveset.c b/xfixes/saveset.c
index e6e2976..31664ab 100755
--- a/xfixes/saveset.c
+++ b/xfixes/saveset.c
@@ -72,5 +72,5 @@ SProcXFixesChangeSaveSet(ClientPtr client)
 
     swaps(&stuff->length, n);
     swapl(&stuff->window, n);
-    return ProcXFixesChangeSaveSet(client);
+    return (*ProcXFixesVector[stuff->xfixesReqType])(client);
 }
diff --git a/xfixes/select.c b/xfixes/select.c
index 415257e..12a165f 100755
--- a/xfixes/select.c
+++ b/xfixes/select.c
@@ -224,7 +224,7 @@ SProcXFixesSelectSelectionInput (ClientPtr client)
     swapl(&stuff->window, n);
     swapl(&stuff->selection, n);
     swapl(&stuff->eventMask, n);
-    return ProcXFixesSelectSelectionInput(client);
+    return (*ProcXFixesVector[stuff->xfixesReqType])(client);
 }
     
 void


More information about the xorg-commit mailing list