Evas (wayland_egl): Fix a series of various segfaults with the
authordevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 23 Jul 2012 14:33:31 +0000 (14:33 +0000)
committerdevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 23 Jul 2012 14:33:31 +0000 (14:33 +0000)
commit28dd8f9252b424dea637f89aec6c175e934fd8ec
treee755b25f43253f4348e5f4f1c8b409218bcab025
parent4f0b8ea196d2eed0bccb16639e94f658a68e35a8
Evas (wayland_egl): Fix a series of various segfaults with the
wayland_egl engine caused by windows being hidden:

From: Rob Bradford <rob@linux.intel.com>
Date: Fri, 13 Jul 2012 19:13:12 +0100
Subject: [PATCH] evas(wayland_egl): Resolve a series of segfaults on
clean-up

The first was that when a window was being hidden the render engine
(e->engine.data.output) was being assigned to NULL (like on an error
path). I
checked other backends and they only free and nullify this pointer on
error
paths. By doing it on a hide it was interfering with cleanup process
for the
object.

This then highlighted a second crash from the derefence of the window
to NULL
when flushing the cache. If the window was hidden this window pointer
would
be NULL.

The third it highlighted was a duplicate call into
evas_gl_common_image_free
and the freeing of the image cache twice. By the time eng_image_free
has been
called the cache has already been freed so we can remove the duplicate
free.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@74330 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33
src/modules/engines/wayland_egl/evas_engine.c