prevent double shutdown of x11 compositor in xwayland mode

only do shutdown in xwl module if not actively shutting down
devs/bu5hm4n/sandbox_fix
Mike Blumenkrantz 6 years ago
parent e7cfd06675
commit 3fb8253edb
  1. 7
      src/modules/xwayland/e_mod_main.c

@ -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);
}

Loading…
Cancel
Save