mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
refactor: Add explicit cast to expected_last_page to silence fuzz ISan
This commit is contained in:
parent
4a020ca443
commit
fa9cb101cf
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue