derekf pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bd4ccfa0f56b8ccd392e585b1744267d62a0a048
commit bd4ccfa0f56b8ccd392e585b1744267d62a0a048 Author: Chris Michael <cp.mich...@samsung.com> Date: Wed May 3 10:43:47 2017 -0400 ecore-drm2: Don't remove plane from output list on release As we need to be able to commit a new plane state for any released planes, we should not be removing them from the output list just yet. Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/lib/ecore_drm2/ecore_drm2_plane.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/ecore_drm2/ecore_drm2_plane.c b/src/lib/ecore_drm2/ecore_drm2_plane.c index 6729486..100b8b9 100644 --- a/src/lib/ecore_drm2/ecore_drm2_plane.c +++ b/src/lib/ecore_drm2/ecore_drm2_plane.c @@ -126,8 +126,6 @@ ecore_drm2_plane_release(Ecore_Drm2_Plane *plane) EINA_SAFETY_ON_NULL_RETURN(plane); plane->state->in_use = EINA_FALSE; - plane->output->planes = eina_list_remove(plane->output->planes, plane); - free(plane); } EAPI void --