rimmed pushed a commit to branch eflete-1.18. http://git.enlightenment.org/tools/eflete.git/commit/?id=3c80179731293e2bd5df66c214a8c99a4b3575c6
commit 3c80179731293e2bd5df66c214a8c99a4b3575c6 Author: Jaehwan Kim <[email protected]> Date: Thu Sep 1 18:09:22 2016 +0900 export-edc: fix segment fault. --- src/bin/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/main.c b/src/bin/main.c index c176219..093043e 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -349,7 +349,8 @@ elm_main(int argc, char **argv) run: ap.path.export_edj = export_edj; - _export_edc_path_set(export_edc); + if (export_edc) + _export_edc_path_set(export_edc); if (!ui_main_window_add()) { app_shutdown(); --
