jaehwan pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=048844eb8c9a705c8cecb59062f8e4a2fbb6aa85
commit 048844eb8c9a705c8cecb59062f8e4a2fbb6aa85 Author: Jaehwan Kim <jae.hwan....@samsung.com> 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(); --