summaryrefslogtreecommitdiff
path: root/library/global.cpp
Side-by-side diff
Diffstat (limited to 'library/global.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/global.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/library/global.cpp b/library/global.cpp
index 2162e02..d6ba84f 100644
--- a/library/global.cpp
+++ b/library/global.cpp
@@ -604,15 +604,5 @@ void Global::invoke(const QString &c)
} else
#endif
- {
- char *oldpre = ::getenv ( "LD_PRELOAD" );
-
- QString newpre = QPEApplication::qpeDir ( ) + "/lib/libpreload.so";
- if ( QFile::exists ( newpre )) {
- if ( oldpre && oldpre [0] )
- newpre = newpre + ":" + oldpre;
- ::setenv ( "LD_PRELOAD", newpre. latin1( ), 1 );
- qDebug ( "\nPRELOADING\n" );
- }
-
+ {
if ( !::vfork() ) {
for ( int fd = 3; fd < 100; fd++ )
@@ -624,8 +614,4 @@ void Global::invoke(const QString &c)
_exit( -1 );
}
- if ( oldpre )
- ::setenv ( "LD_PRELOAD", oldpre, 1 );
- else
- ::unsetenv ( "LD_PRELOAD" );
}
StartingAppList::add( list[0] );