efl ui video - fix coverity CID 1356997

really minor lack of check if emotion init succeeds. check and
complain if it fails.

@fix
This commit is contained in:
Carsten Haitzler 2016-07-24 18:24:01 +09:00
parent 35e39f4145
commit 8b20d8dd0d
1 changed files with 2 additions and 1 deletions

View File

@ -245,7 +245,8 @@ _efl_ui_video_efl_canvas_group_group_add(Eo *obj, Efl_Ui_Video_Data *priv)
elm_widget_can_focus_set(obj, EINA_TRUE);
priv->emotion = emotion_object_add(evas_object_evas_get(obj));
emotion_object_init(priv->emotion, NULL);
if (!emotion_object_init(priv->emotion, NULL))
CRI("Failed to init emotion object");
if (!elm_layout_theme_set(obj, "video", "base", elm_widget_style_get(obj)))
CRI("Failed to set layout!");