diff options
| author | George Hazan <ghazan@miranda.im> | 2023-04-10 18:50:46 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2023-04-10 18:50:46 +0300 |
| commit | 90ac4c689e1322b48f6ca53a0c8fff81daf73c9c (patch) | |
| tree | 63e000a99864d819650634fe8a7fa8b2be0cd1d2 /plugins/DbChecker | |
| parent | 79ac0acda98f8f7a34bde30b7720a11c04281cb4 (diff) | |
code cleaning
Diffstat (limited to 'plugins/DbChecker')
| -rw-r--r-- | plugins/DbChecker/src/worker.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/DbChecker/src/worker.cpp b/plugins/DbChecker/src/worker.cpp index e5590bb127..c2e458a921 100644 --- a/plugins/DbChecker/src/worker.cpp +++ b/plugins/DbChecker/src/worker.cpp @@ -90,10 +90,8 @@ void __cdecl WorkerThread(DbToolOptions *opts) DB::ECPTR pCursor(DB::Events(cc));
DBEVENTINFO dboldev = {};
while (MEVENT hEvent = pCursor.FetchNext()) {
- DB::EventInfo dbei;
- if (opts->bCheckUtf || opts->bCheckDups) // read also event's body
- dbei.cbBlob = -1;
- if (db_event_get(hEvent, &dbei))
+ DB::EventInfo dbei(hEvent, opts->bCheckUtf || opts->bCheckDups);
+ if (!dbei)
continue;
if (opts->bMarkRead && !dbei.markedRead()) {
|
