drm/i915/sprite: Fix mem leak in intel_plane_init()
authorJesper Juhl <jj@chaosbits.net>
Tue, 26 Jun 2012 22:55:37 +0000 (00:55 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 27 Jun 2012 15:03:24 +0000 (17:03 +0200)
If we ever hit the default case in the switch statement we'll return
from the function without freeing the memory we just allocated to
'intel_plane' (but that has not been used).

This patch gets rid of the leak by freeing the memory just before we
return.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>

No differences found