diff options
author | Lionel Landwerlin <[email protected]> | 2017-05-22 11:07:53 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-05-22 15:44:38 +0100 |
commit | 30dc56bb5b313ae67c6e8648e23bb38c8e737488 (patch) | |
tree | 336e48af30a4fb05f3ab97edf0c2b84951cdb181 /src | |
parent | 4eb0411ed72cbe13f320b7487c2a333e513becc9 (diff) |
egl/wayland: verify event queue was allocated
We're already verified that 'window' wasn't NULL, I'm guessing this
allocation error is about the newly created queue.
CID: 1409754
Fixes: 03dd9a88b0b ("egl/wayland: Use per-surface event queues")
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/egl/drivers/dri2/platform_wayland.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c index 29f64f3a1e6..9ad06350048 100644 --- a/src/egl/drivers/dri2/platform_wayland.c +++ b/src/egl/drivers/dri2/platform_wayland.c @@ -147,7 +147,7 @@ dri2_wl_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp, dri2_surf->wl_win = window; dri2_surf->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy); - if (!window) { + if (!dri2_surf->wl_queue) { _eglError(EGL_BAD_ALLOC, "dri2_create_surface"); goto cleanup_surf; } |