diff options
Diffstat (limited to 'media-sound/amarok/files/amarok-1.4.2-collection-sqlite.patch')
-rw-r--r-- | media-sound/amarok/files/amarok-1.4.2-collection-sqlite.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/media-sound/amarok/files/amarok-1.4.2-collection-sqlite.patch b/media-sound/amarok/files/amarok-1.4.2-collection-sqlite.patch deleted file mode 100644 index 0788c30a125f..000000000000 --- a/media-sound/amarok/files/amarok-1.4.2-collection-sqlite.patch +++ /dev/null @@ -1,40 +0,0 @@ -Index: amarok/src/collectiondb.cpp -=================================================================== ---- amarok/src/collectiondb.cpp (revision 577764) -+++ amarok/src/collectiondb.cpp (revision 577765) -@@ -5761,7 +5761,8 @@ - { - - QStringList values; -- int error, rc; -+ int error; -+ int rc = 0; - const char* tail; - sqlite3_stmt* stmt; - int busyCnt = 0; -@@ -5787,6 +5788,7 @@ - Debug::error() << sqlite3_errmsg( m_db ) << endl; - Debug::error() << "on query: " << statement << endl; - values = QStringList(); -+ break; - } - else - { -@@ -5851,7 +5853,8 @@ - - int SqliteConnection::insert( const QString& statement, const QString& /* table */ ) - { -- int error, rc; -+ int error; -+ int rc = 0; - const char* tail; - sqlite3_stmt* stmt; - int busyCnt = 0; -@@ -5876,6 +5879,7 @@ - Debug::error() << k_funcinfo << " sqlite3_compile error:" << endl; - Debug::error() << sqlite3_errmsg( m_db ) << endl; - Debug::error() << "on insert: " << statement << endl; -+ break; - } - else - { |