mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-09 08:18:09 +02:00
shell: Fix a potential NULL pointer dereference
get_shell_surface() may return NULL. Found by scan-build.
This commit is contained in:
parent
648a4dd3ec
commit
2c3849be91
1 changed files with 2 additions and 1 deletions
|
|
@ -1373,7 +1373,8 @@ take_surface_to_workspace_by_seat(struct desktop_shell *shell,
|
|||
workspace_has_only(to, surface))
|
||||
update_workspace(shell, index, from, to);
|
||||
else {
|
||||
if (wl_list_empty(&shsurf->workspace_transform.link))
|
||||
if (shsurf != NULL &&
|
||||
wl_list_empty(&shsurf->workspace_transform.link))
|
||||
wl_list_insert(&shell->workspaces.anim_sticky_list,
|
||||
&shsurf->workspace_transform.link);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue