From 9e7602b032c2187887c8164fa23c37d6daf28ac0 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 5 Mar 2010 13:03:11 +0100 Subject: add forgotten iterator++ in code which deletes records in REPRESULT table Signed-off-by: Denys Vlasenko --- lib/Plugins/SQLite3.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/Plugins/SQLite3.cpp') diff --git a/lib/Plugins/SQLite3.cpp b/lib/Plugins/SQLite3.cpp index b076dfaf..6ccadae4 100644 --- a/lib/Plugins/SQLite3.cpp +++ b/lib/Plugins/SQLite3.cpp @@ -516,6 +516,7 @@ void CSQLite3::DeleteRows_by_dir(const char *dump_dir) " WHERE "COL_UUID"='%s' AND "COL_UID"='%s';", it->m_sUUID.c_str(), it->m_sUID.c_str() ); + it++; } execute_sql(m_pDB, "DELETE FROM "ABRT_TABLE -- cgit