Module: Mesa Branch: master Commit: c07c18081e3b21070c7db3aea0c7a31a31ff20ce URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c07c18081e3b21070c7db3aea0c7a31a31ff20ce
Author: Philipp Brüschweiler <[email protected]> Date: Fri Mar 8 21:32:36 2013 +0100 wayland: fix segfault when using software rendering wayland_roundtrip() was given an incorrect parameter. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=62362 Note: This is a candidate for the stable branches. Signed-off-by: Brian Paul <[email protected]> --- .../state_trackers/egl/wayland/native_shm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/state_trackers/egl/wayland/native_shm.c b/src/gallium/state_trackers/egl/wayland/native_shm.c index a959237..2499677 100644 --- a/src/gallium/state_trackers/egl/wayland/native_shm.c +++ b/src/gallium/state_trackers/egl/wayland/native_shm.c @@ -163,7 +163,7 @@ wayland_shm_display_init_screen(struct native_display *ndpy) return FALSE; if (shmdpy->base.formats == 0) - wayland_roundtrip(shmdpy->base.dpy); + wayland_roundtrip(&shmdpy->base); if (shmdpy->base.formats == 0) return FALSE; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
