billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=12ef99bcf2593507d303ce3fb638762febd04756
commit 12ef99bcf2593507d303ce3fb638762febd04756 Author: Boris Faure <bill...@gmail.com> Date: Mon Feb 23 22:52:33 2015 +0100 fix segfault when Term widget can not be created --- src/bin/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/main.c b/src/bin/main.c index 842db42..6eca428 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -862,6 +862,7 @@ remote: if (!term) { CRITICAL(_("Could not create terminal widget.")); + config = NULL; retval = EXIT_FAILURE; goto end; } --