Fixes: #274302 - don't unload the main binary

RevBy: TrustMe
pull/1/head
Alexey Shilov 14 years ago
parent 2d62b86ee7
commit ea355176fb

2
debian/changelog vendored

@ -1,6 +1,6 @@
applauncherd (2.0.0) unstable; urgency=low
*
* Fixes: #274302 - don't unload the main binary
-- Alexey Shilov <alexey.shilov@nokia.com> Thu, 18 Aug 2011 15:43:02 +0300

@ -527,7 +527,7 @@ int Booster::launchProcess()
setEnvironmentBeforeLaunch();
// Load the application and find out the address of main()
void* handle = loadMain();
loadMain();
#ifdef WITH_COVERAGE
__gcov_flush();
@ -535,7 +535,6 @@ int Booster::launchProcess()
// Jump to main()
const int retVal = m_appData->entry()(m_appData->argc(), const_cast<char **>(m_appData->argv()));
dlclose(handle);
#ifdef WITH_COVERAGE
__gcov_flush();

Loading…
Cancel
Save