Fixes: NB#207781 - Some applications do not load QAccessibleBridgePlugin plug-ins

RevBy: Olli Leppänen
pull/1/head
Juha Lintula 15 years ago
parent 2dcd477b0a
commit d6ec01ab55

8
debian/changelog vendored

@ -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 <juha.lintula@nokia.com> 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 * Changes: Added a workaround to startup time tests from grid to make them work
* Fixes: NB#210094 - files cleanup for applauncherd/booster-m * Fixes: NB#210094 - files cleanup for applauncherd/booster-m

@ -74,9 +74,6 @@ void Booster::initialize(int initialArgc, char ** initialArgv, int newPipeFd[2])
// Preload stuff // Preload stuff
preload(); preload();
// Clean-up all the env variables
clearenv();
// Rename process to temporary booster process name, e.g. "booster-m" // Rename process to temporary booster process name, e.g. "booster-m"
renameProcess(initialArgc, initialArgv); renameProcess(initialArgc, initialArgv);
@ -285,6 +282,9 @@ int Booster::launchProcess()
void* Booster::loadMain() void* Booster::loadMain()
{ {
// Clean-up all the env variables
clearenv();
#ifdef HAVE_CREDS #ifdef HAVE_CREDS
// filter out invoker-specific credentials // filter out invoker-specific credentials
Booster::filterOutCreds(m_appData->peerCreds()); Booster::filterOutCreds(m_appData->peerCreds());

Loading…
Cancel
Save