gtkwaylandsink: Fix crash when rendering after the window is closed

Continuation of https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4197

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4238>
This commit is contained in:
Colin Kinloch 2023-03-20 17:44:23 +00:00 committed by GStreamer Marge Bot
parent 02a8e4bb4c
commit 5fcd34bf22

View file

@ -961,6 +961,9 @@ render_last_buffer (GstGtkWaylandSink * self, gboolean redraw)
struct wl_surface *surface;
struct wl_callback *callback;
if (!priv->wl_window)
return;
wlbuffer = gst_buffer_get_wl_buffer (priv->display, priv->last_buffer);
surface = gst_wl_window_get_wl_surface (priv->wl_window);