jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c2ae93089b6f40b59e49e8e24c81fa650047e89e
commit c2ae93089b6f40b59e49e8e24c81fa650047e89e Author: Jean-Philippe Andre <[email protected]> Date: Tue Sep 26 12:20:43 2017 +0900 win: Avoid safety ERR in efreet This is an error happening in make check. Annoying but mostly harmless. --- src/lib/elementary/efl_ui_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 0d6731c123..b1f95a7161 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -4378,7 +4378,7 @@ _elm_win_frame_add(Efl_Ui_Win_Data *sd, const char *element, const char *style) if (sd->icon_name) set = elm_icon_standard_set(sd->icon, sd->icon_name); - if ((!sd->icon_name) || (!set)) + if (((!sd->icon_name) || (!set)) && _elm_appname) { Efreet_Desktop *d; d = efreet_util_desktop_exec_find(_elm_appname); --
