From e5dbf6cfbab874aa2ecb12284e97e6dfda7d3d39 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 8 Aug 2016 17:06:40 +0900 Subject: [PATCH] elm init - handle return value of ecore_file_init make coverity happy this isn't an issue as init will never fail, but makes coverity happy with CID 1353589 --- src/lib/elementary/elm_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_main.c b/src/lib/elementary/elm_main.c index 3a22a26d75..461bf83949 100644 --- a/src/lib/elementary/elm_main.c +++ b/src/lib/elementary/elm_main.c @@ -677,7 +677,8 @@ elm_quicklaunch_init(int argc, if (!ELM_EVENT_PROCESS_FOREGROUND) ELM_EVENT_PROCESS_FOREGROUND = ecore_event_type_new(); - ecore_file_init(); + if (!ecore_file_init()) + ERR("Elementary cannot init ecore_file"); eio_init(); _elm_exit_handler =