Merge c6de072a21 into merged_master (Bitcoin PR bitcoin/bitcoin#30248)

This commit is contained in:
ivanlele 2026-03-02 11:16:09 +00:00
commit 7a85463efb
No known key found for this signature in database

View file

@ -551,7 +551,7 @@ void BerkeleyRODatabase::Open()
// }
// Check the last page number
uint32_t expected_last_page = (size / page_size) - 1;
uint32_t expected_last_page{uint32_t((size / page_size) - 1)};
if (outer_meta.last_page != expected_last_page) {
throw std::runtime_error("Last page number could not fit in file");
}