summaryrefslogtreecommitdiff
path: root/core/launcher/irserver.cpp
Unidiff
Diffstat (limited to 'core/launcher/irserver.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/irserver.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/launcher/irserver.cpp b/core/launcher/irserver.cpp
index b22e064..2147d0a 100644
--- a/core/launcher/irserver.cpp
+++ b/core/launcher/irserver.cpp
@@ -15,4 +15,5 @@ IrServer::IrServer( QObject *parent, const char *name )
15{ 15{
16 lib = 0; 16 lib = 0;
17 iface = 0;
17 QString path = QPEApplication::qpeDir() + "/plugins/obex/"; 18 QString path = QPEApplication::qpeDir() + "/plugins/obex/";
18 QDir dir( path, "lib*.so" ); 19 QDir dir( path, "lib*.so" );
@@ -20,5 +21,4 @@ IrServer::IrServer( QObject *parent, const char *name )
20 QStringList::Iterator it; 21 QStringList::Iterator it;
21 for ( it = list.begin(); it != list.end(); ++it ) { 22 for ( it = list.begin(); it != list.end(); ++it ) {
22 ObexInterface *iface = 0;
23 QLibrary *trylib = new QLibrary( path + *it ); 23 QLibrary *trylib = new QLibrary( path + *it );
24 qDebug("trying lib %s", (path + (*it)).latin1() ); 24 qDebug("trying lib %s", (path + (*it)).latin1() );
@@ -47,4 +47,6 @@ IrServer::IrServer( QObject *parent, const char *name )
47IrServer::~IrServer() 47IrServer::~IrServer()
48{ 48{
49 if ( iface )
50 iface->release();
49 delete lib; 51 delete lib;
50} 52}