evas: Fix incorrect expression in efl_canvas_surface_x11

This patch fixes an issue detected by Coverity where 'obj' is written
twice with the same value

CID1353363

@fix

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2016-03-16 09:24:20 -04:00
parent df12843512
commit 7cbd8c7b93
1 changed files with 3 additions and 1 deletions

View File

@ -32,7 +32,9 @@ _efl_canvas_surface_x11_eo_base_constructor(Eo *eo, Efl_Canvas_Surface_X11_Data
EOLIAN static void
_efl_canvas_surface_x11_eo_base_destructor(Eo *eo, Efl_Canvas_Surface_X11_Data *pd)
{
Evas_Object_Protected_Data *obj = obj = eo_data_scope_get(eo, EVAS_OBJECT_CLASS);
Evas_Object_Protected_Data *obj;
obj = eo_data_scope_get(eo, EVAS_OBJECT_CLASS);
ENFN->image_native_shutdown(ENDT, EVAS_NATIVE_SURFACE_X11);
eo_data_unref(eo, pd->base);