glx: Fix __glXWireToEvent for BufferSwapComplete
authorAdam Jackson <ajax@redhat.com>
Fri, 31 Jul 2015 15:32:58 +0000 (11:32 -0400)
committerAdam Jackson <ajax@redhat.com>
Tue, 18 Aug 2015 13:39:46 +0000 (09:39 -0400)
commit8f7ebcb6fad53ea6d2f80fc5b7a046db07690032
tree2e1a17b98fcd42064850b6714f93d16fbca7d05a
parent97f5d00648046a711b7806c3a47b28543c084f0e
glx: Fix __glXWireToEvent for BufferSwapComplete

In the DRI2 path this event is magically synthesized from the
corresponding DRI2 event, but with Present, the server sends us the
event itself. The DRI2 path fills in the serial number, send_event, and
display fields of the XEvent struct that the app sees, but the Present
path did not.

This is likely related to a class of crashes seen in gtk/clutter apps:

https://bugzilla.redhat.com/attachment.cgi?id=1032631

Note that the crashing instruction is looking up the lock_fns slot in
the Display *, and %rdi (holding the Display *) is 0x1.

Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Adam Jackson <ajax@redhat.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/glx/glxext.c