Skip to content
Snippets Groups Projects
Commit 94cb06a2 authored by Pekka Paalanen's avatar Pekka Paalanen
Browse files

ivi-shell: harden get_ivi_shell_surface()


Add more sanity checks to get_ivi_shell_surface() just in case.

If the configure hook is set, we must always have non-NULL
configure_private.

Check the ivi_shell_surface matches the surface.

Signed-off-by: Pekka Paalanen's avatarPekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: default avatarEugen Friedrich <friedrix@gmail.com>
parent fd45f60f
No related branches found
No related tags found
No related merge requests found
......@@ -81,10 +81,16 @@ ivi_shell_surface_configure(struct weston_surface *, int32_t, int32_t);
static struct ivi_shell_surface *
get_ivi_shell_surface(struct weston_surface *surface)
{
if (surface->configure == ivi_shell_surface_configure)
return surface->configure_private;
struct ivi_shell_surface *shsurf;
if (surface->configure != ivi_shell_surface_configure)
return NULL;
shsurf = surface->configure_private;
assert(shsurf);
assert(shsurf->surface == surface);
return NULL;
return shsurf;
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment