wayland/gtk-shell: Dereference surface after NULL check

Spotted by coverity.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2772>
This commit is contained in:
Jonas Ådahl 2022-12-18 09:45:00 +01:00
parent a16df485db
commit 439856e7aa

View File

@ -172,9 +172,8 @@ gtk_surface_request_focus (struct wl_client *client,
{
MetaWaylandGtkSurface *gtk_surface = wl_resource_get_user_data (resource);
MetaWaylandSurface *surface = gtk_surface->surface;
MetaContext *context =
meta_wayland_compositor_get_context (surface->compositor);
MetaDisplay *display = meta_context_get_display (context);
MetaContext *context;
MetaDisplay *display;
MetaStartupSequence *sequence = NULL;
MetaWindow *window;
@ -185,6 +184,9 @@ gtk_surface_request_focus (struct wl_client *client,
if (!window)
return;
context = meta_wayland_compositor_get_context (surface->compositor);
display = meta_context_get_display (context);
if (startup_id)
sequence = meta_startup_notification_lookup_sequence (display->startup_notification,
startup_id);