diff options
author | George Hazan <ghazan@miranda.im> | 2021-01-10 19:16:08 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-01-10 19:16:08 +0300 |
commit | 95afb0448268a09a8ecc9d8102902bba24ddd211 (patch) | |
tree | 47fbc59d56fe73d9d933c559960153618b9ae058 /plugins/Dbx_sqlite/src/dbevents.cpp | |
parent | d653166c6ee7345b8858e17bcc07a03229b23131 (diff) |
minor code cleaning
Diffstat (limited to 'plugins/Dbx_sqlite/src/dbevents.cpp')
-rwxr-xr-x | plugins/Dbx_sqlite/src/dbevents.cpp | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/plugins/Dbx_sqlite/src/dbevents.cpp b/plugins/Dbx_sqlite/src/dbevents.cpp index 1ae0fb0663..6abd5de844 100755 --- a/plugins/Dbx_sqlite/src/dbevents.cpp +++ b/plugins/Dbx_sqlite/src/dbevents.cpp @@ -230,9 +230,7 @@ BOOL CDbxSQLite::EditEvent(MCONTACT hContact, MEVENT hDbEvent, const DBEVENTINFO if (dbei->timestamp == 0) return 1; - DBCachedContact *cc = (hContact) - ? m_cache->GetCachedContact(hContact) - : &m_system; + DBCachedContact *cc = (hContact) ? m_cache->GetCachedContact(hContact) : &m_system; if (cc == nullptr) return 1; @@ -275,6 +273,7 @@ LONG CDbxSQLite::GetBlobSize(MEVENT hDbEvent) sqlite3_reset(stmt); return -1; } + LONG res = sqlite3_column_int64(stmt, 0); sqlite3_reset(stmt); return res; @@ -328,9 +327,7 @@ BOOL CDbxSQLite::MarkEventRead(MCONTACT hContact, MEVENT hDbEvent) if (hDbEvent == 0) return -1; - DBCachedContact *cc = (hContact) - ? m_cache->GetCachedContact(hContact) - : &m_system; + DBCachedContact *cc = (hContact) ? m_cache->GetCachedContact(hContact) : &m_system; if (cc == nullptr) return -1; @@ -370,7 +367,6 @@ BOOL CDbxSQLite::MarkEventRead(MCONTACT hContact, MEVENT hDbEvent) } NotifyEventHooks(g_hevMarkedRead, hContact, (LPARAM)hDbEvent); - return flags; } @@ -395,13 +391,10 @@ MCONTACT CDbxSQLite::GetEventContact(MEVENT hDbEvent) MEVENT CDbxSQLite::FindFirstEvent(MCONTACT hContact) { - DBCachedContact *cc = (hContact) - ? m_cache->GetCachedContact(hContact) - : &m_system; + DBCachedContact *cc = (hContact) ? m_cache->GetCachedContact(hContact) : &m_system; if (cc == nullptr) return 0; - evt_cnt_fwd = hContact; mir_cslock lock(m_csDbAccess); @@ -428,9 +421,7 @@ MEVENT CDbxSQLite::FindFirstEvent(MCONTACT hContact) MEVENT CDbxSQLite::FindFirstUnreadEvent(MCONTACT hContact) { - DBCachedContact *cc = (hContact) - ? m_cache->GetCachedContact(hContact) - : &m_system; + DBCachedContact *cc = (hContact) ? m_cache->GetCachedContact(hContact) : &m_system; if (cc == nullptr) return 0; @@ -483,9 +474,7 @@ MEVENT CDbxSQLite::FindFirstUnreadEvent(MCONTACT hContact) MEVENT CDbxSQLite::FindLastEvent(MCONTACT hContact) { - DBCachedContact *cc = (hContact) - ? m_cache->GetCachedContact(hContact) - : &m_system; + DBCachedContact *cc = (hContact) ? m_cache->GetCachedContact(hContact) : &m_system; if (cc == nullptr) return 0; @@ -649,9 +638,8 @@ BOOL CDbxSQLite::MetaMergeHistory(DBCachedContact *ccMeta, DBCachedContact *ccSu rc = sqlite3_step(stmt); assert(rc == SQLITE_ROW || rc == SQLITE_DONE); } - sqlite3_reset(stmt); - + sqlite3_reset(stmt); return TRUE; } @@ -709,6 +697,7 @@ MEVENT CDbxSQLiteEventCursor::FetchNext() { if (!cursor) return 0; + int rc = sqlite3_step(cursor); assert(rc == SQLITE_ROW || rc == SQLITE_DONE); if (rc != SQLITE_ROW) { |