diff --git a/src/libtomahawk/utils/tomahawkcache.cpp b/src/libtomahawk/utils/tomahawkcache.cpp index 47692b2da..ac4dc06b5 100644 --- a/src/libtomahawk/utils/tomahawkcache.cpp +++ b/src/libtomahawk/utils/tomahawkcache.cpp @@ -22,6 +22,7 @@ #include #include +#include using namespace TomahawkUtils; @@ -53,6 +54,8 @@ Cache::~Cache() void Cache::pruneTimerFired() { + QMutexLocker mutex_locker( &m_mutex ); + qDebug() << Q_FUNC_INFO << "Pruning tomahawkcache"; qlonglong currentMSecsSinceEpoch = QDateTime::currentMSecsSinceEpoch(); @@ -79,6 +82,8 @@ void Cache::pruneTimerFired() QVariant Cache::getData ( const QString& identifier, const QString& key ) { + QMutexLocker mutex_locker( &m_mutex ); + const QString cacheDir = m_cacheBaseDir + identifier; QSettings cached_settings ( cacheDir, QSettings::IniFormat ); diff --git a/src/libtomahawk/utils/tomahawkcache.h b/src/libtomahawk/utils/tomahawkcache.h index b28a377c1..6fa16d4c2 100644 --- a/src/libtomahawk/utils/tomahawkcache.h +++ b/src/libtomahawk/utils/tomahawkcache.h @@ -22,6 +22,7 @@ #include "dllmacro.h" #include "utils/tomahawkutils.h" +#include #include #include #include @@ -63,6 +64,7 @@ private: QString m_cacheBaseDir; QSettings m_cacheManifest; QTimer m_pruneTimer; + QMutex m_mutex; }; }