diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2023-02-15 17:49:50 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2023-02-15 18:11:14 +0200 |
commit | ee50083d93869aaa581a092c522efe08252fae55 (patch) | |
tree | 1ea9e77c22c3f0d66eeb7fdef3df231d9415e2e0 | |
parent | 02fcb317161c08bcf02093a74abe18d4a4392335 (diff) |
shell: Check for a valid ivi_surface
A hot-plug/re-plug event means we remove the black curtain with it the
ivi_surface that hangs out of it, so verify it before assuming there's
one installed.
Bug-AGL: SPEC-4705
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Iad53ae34b4e15b5962cf984978a65c344aac9200
-rw-r--r-- | src/shell.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shell.c b/src/shell.c index 15f911d..bcfb673 100644 --- a/src/shell.c +++ b/src/shell.c @@ -1088,7 +1088,8 @@ create_black_curtain_view(struct ivi_output *output) bool output_has_black_curtain(struct ivi_output *output) { - return (output->fullscreen_view.fs->view && + return (output->fullscreen_view.fs && + output->fullscreen_view.fs->view && output->fullscreen_view.fs->view->is_mapped && output->fullscreen_view.fs->view->surface->is_mapped); } |