Revert "Abandon the verification of the data whose status is deleted"

This commit is contained in:
朱天龙 (Armink) 2022-07-02 21:07:41 +08:00 committed by GitHub
parent 1914fd2511
commit 9c53806e9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -332,9 +332,6 @@ static fdb_err_t read_kv(fdb_kvdb_t db, fdb_kv_t kv)
} else if (kv->len > db_sec_size(db) - SECTOR_HDR_DATA_SIZE && kv->len < db_max_size(db)) {
//TODO 扇区连续模式,或者写入长度没有写入完整
FDB_ASSERT(0);
} else if (FDB_KV_DELETED == kv->status) {
kv->crc_is_ok = false;
return FDB_READ_ERR;
}
/* CRC32 data len(header.name_len + header.value_len + name + value) */