prevent double shutdown of x11 compositor in xwayland mode

only do shutdown in xwl module if not actively shutting down
This commit is contained in:
Mike Blumenkrantz 2017-11-06 13:58:53 -05:00
parent e7cfd06675
commit 3fb8253edb
1 changed files with 5 additions and 2 deletions

View File

@ -451,8 +451,11 @@ xwl_shutdown(void)
if (exs->sig_hdlr) ecore_event_handler_del(exs->sig_hdlr);
free(exs);
if (e_comp_util_has_x()) e_comp_x_shutdown();
ecore_x_shutdown();
if (!stopping)
{
if (e_comp_util_has_x()) e_comp_x_shutdown();
ecore_x_shutdown();
}
e_util_env_set("DISPLAY", NULL);
}