input: use tmp var in pointer_unmap_sprite

Remove lots of repeated indirection.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
Pekka Paalanen 2014-11-12 16:42:52 +02:00
parent 5c11fc6fb7
commit c557ff7ea3

View File

@ -423,12 +423,14 @@ static const struct weston_keyboard_grab_interface
static void static void
pointer_unmap_sprite(struct weston_pointer *pointer) pointer_unmap_sprite(struct weston_pointer *pointer)
{ {
if (weston_surface_is_mapped(pointer->sprite->surface)) struct weston_surface *surface = pointer->sprite->surface;
weston_surface_unmap(pointer->sprite->surface);
if (weston_surface_is_mapped(surface))
weston_surface_unmap(surface);
wl_list_remove(&pointer->sprite_destroy_listener.link); wl_list_remove(&pointer->sprite_destroy_listener.link);
pointer->sprite->surface->configure = NULL; surface->configure = NULL;
pointer->sprite->surface->configure_private = NULL; surface->configure_private = NULL;
weston_view_destroy(pointer->sprite); weston_view_destroy(pointer->sprite);
pointer->sprite = NULL; pointer->sprite = NULL;
} }