efl ui video - fix coverity CID 1356997
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Sun, 24 Jul 2016 09:24:01 +0000 (18:24 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Sun, 24 Jul 2016 09:44:15 +0000 (18:44 +0900)
really minor lack of check if emotion init succeeds. check and
complain if it fails.

@fix

src/lib/elementary/efl_ui_video.c

index 2f1965b..50bb003 100644 (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!");