diff --git a/debian/changelog b/debian/changelog index fe74a21..6aab8c8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,10 @@ -applauncherd (0.15.8) unstable; urgency=low +applauncherd (0.15.9) stable; urgency=low + + * Fixes: NB#207781 - Some applications do not load QAccessibleBridgePlugin plug-ins + + -- Juha Lintula Thu, 09 Dec 2010 14:59:32 +0200 + +applauncherd (0.15.8) stable; urgency=low * Changes: Added a workaround to startup time tests from grid to make them work * Fixes: NB#210094 - files cleanup for applauncherd/booster-m diff --git a/src/launcherlib/booster.cpp b/src/launcherlib/booster.cpp index 6d41ef0..b2f7c1f 100644 --- a/src/launcherlib/booster.cpp +++ b/src/launcherlib/booster.cpp @@ -74,9 +74,6 @@ void Booster::initialize(int initialArgc, char ** initialArgv, int newPipeFd[2]) // Preload stuff preload(); - // Clean-up all the env variables - clearenv(); - // Rename process to temporary booster process name, e.g. "booster-m" renameProcess(initialArgc, initialArgv); @@ -285,6 +282,9 @@ int Booster::launchProcess() void* Booster::loadMain() { + // Clean-up all the env variables + clearenv(); + #ifdef HAVE_CREDS // filter out invoker-specific credentials Booster::filterOutCreds(m_appData->peerCreds());