Terminate compositor in TDM unless a TDE or failsafe session was selected

This relates to Bug 2521

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/2/head
Slávek Banko 9 years ago
parent adbe9f7f5f
commit fce47f535c

@ -553,7 +553,8 @@ kg_main( const char *argv0 )
}
if (comp) {
if (comp->isRunning()) {
if (_compositor == TDE_COMPOSITOR_BINARY) {
if (((login_session_wm == "tde") || (login_session_wm == "trinity") || (login_session_wm == "failsafe")) &&
(_compositor == TDE_COMPOSITOR_BINARY)) {
// Change process UID
// Get user UID
passwd* userinfo = getpwnam(login_user.ascii());
@ -566,9 +567,12 @@ kg_main( const char *argv0 )
comp->writeStdin(newuid.ascii(), newuid.length());
usleep(50000); // Give the above function some time to execute. Note that on REALLY slow systems this could fail, leaving kompmgr running as root. TODO: Look into ways to make this more robust.
}
comp->closeStdin();
comp->detach();
}
else {
comp->kill();
}
comp->closeStdin();
comp->detach();
}
delete comp;
}

Loading…
Cancel
Save