mirror of
https://github.com/armink/FlashDB
synced 2025-03-28 21:13:13 +00:00
[fdb] Improve the fdb_kv_iterate. Only crc check OK kv will be iterated.
This commit is contained in:
parent
5a8d7d0842
commit
ab4c69f302
@ -1833,7 +1833,7 @@ bool fdb_kv_iterate(fdb_kvdb_t db, fdb_kv_iterator_t itr)
|
|||||||
}
|
}
|
||||||
do {
|
do {
|
||||||
read_kv(db, kv);
|
read_kv(db, kv);
|
||||||
if (kv->status == FDB_KV_WRITE) {
|
if (kv->status == FDB_KV_WRITE && kv->crc_is_ok == true) {
|
||||||
/* We got a valid kv here. */
|
/* We got a valid kv here. */
|
||||||
/* If iterator statistics is needed */
|
/* If iterator statistics is needed */
|
||||||
itr->iterated_cnt++;
|
itr->iterated_cnt++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user