From 602cf294d0003445423d04abae5ece675cf92ec5 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 31 May 2012 16:37:40 +0200 Subject: [PATCH] * Store path as a temporary QByteArray so the data doesn't get free'd again immediately. --- src/libtomahawk/database/FuzzyIndex.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libtomahawk/database/FuzzyIndex.cpp b/src/libtomahawk/database/FuzzyIndex.cpp index 8d5a74903..082616658 100644 --- a/src/libtomahawk/database/FuzzyIndex.cpp +++ b/src/libtomahawk/database/FuzzyIndex.cpp @@ -44,7 +44,9 @@ FuzzyIndex::FuzzyIndex( bool wipeIndex ) , m_luceneSearcher( 0 ) { QString m_lucenePath = TomahawkUtils::appDataDir().absoluteFilePath( "tomahawk.lucene" ); - m_luceneDir = FSDirectory::getDirectory( m_lucenePath.toLocal8Bit().data() ); + QByteArray path = m_lucenePath.toLocal8Bit(); + + m_luceneDir = FSDirectory::getDirectory( path.data() ); m_analyzer = _CLNEW SimpleAnalyzer(); if ( wipeIndex )