Fix an error with unclosed transactions

This commit is contained in:
Lucas Verney 2016-04-06 19:04:52 +02:00
parent 3700905394
commit 92db362406
1 changed files with 2 additions and 1 deletions

View File

@ -146,7 +146,7 @@ int _parse_music_helper(
int id = sqlite3_column_int(res, 0); int id = sqlite3_column_int(res, 0);
if (id == last_id) { if (id == last_id) {
// Skip last inserted item // Skip last inserted item
return 1; continue;
} }
struct force_vector_s song_db; struct force_vector_s song_db;
song_db.tempo = sqlite3_column_double(res, 1); song_db.tempo = sqlite3_column_double(res, 1);
@ -290,6 +290,7 @@ void update_database(
* Rescan errored files * Rescan errored files
* *
* @param mpd_base_path Root directory of the MPD library. * @param mpd_base_path Root directory of the MPD library.
* @return 0 on success, non zero otherwise.
*/ */
void rescan_errored(const char *mpd_base_path) void rescan_errored(const char *mpd_base_path)
{ {