From ee6e3c9e698c16488a692958b5d0c8bee34646ed Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 25 Jun 2012 23:04:32 +0200 Subject: [PATCH] * Make sure script-resolvers are executable before trying to execute them. --- src/libtomahawk/resolvers/ScriptResolver.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/resolvers/ScriptResolver.cpp b/src/libtomahawk/resolvers/ScriptResolver.cpp index cf2f38d8e..151d85460 100644 --- a/src/libtomahawk/resolvers/ScriptResolver.cpp +++ b/src/libtomahawk/resolvers/ScriptResolver.cpp @@ -160,6 +160,7 @@ ScriptResolver::running() const return !m_stopped; } + void ScriptResolver::sendMessage( const QVariantMap& map ) { @@ -413,7 +414,8 @@ ScriptResolver::setupConfWidget( const QVariantMap& m ) } -void ScriptResolver::startProcess() +void +ScriptResolver::startProcess() { if ( !QFile::exists( filePath() ) ) m_error = Tomahawk::ExternalResolver::FileNotFound; @@ -427,6 +429,9 @@ void ScriptResolver::startProcess() QString interpreter; QString runPath = filePath(); + QFile file( filePath() ); + file.setPermissions( file.permissions() | QFile::ExeOwner | QFile::ExeGroup | QFile::ExeOther ); + #ifdef Q_OS_WIN if ( fi.suffix().toLower() != "exe" ) { @@ -456,7 +461,7 @@ void ScriptResolver::startProcess() } #endif // Q_OS_WIN - if( interpreter.isEmpty() ) + if ( interpreter.isEmpty() ) { #ifndef Q_OS_WIN const QFileInfo info( runPath );