mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-15 00:17:18 +01:00
build: Fix fuzz-cuckoocache cross-compiling for Windows with DEBUG=1
This commit is contained in:
@@ -30,7 +30,7 @@ FUZZ_TARGET(cuckoocache)
|
||||
{
|
||||
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
||||
fuzzed_data_provider_ptr = &fuzzed_data_provider;
|
||||
CuckooCache::cache<bool, RandomHasher> cuckoo_cache{};
|
||||
CuckooCache::cache<int, RandomHasher> cuckoo_cache{};
|
||||
if (fuzzed_data_provider.ConsumeBool()) {
|
||||
const size_t megabytes = fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 16);
|
||||
cuckoo_cache.setup_bytes(megabytes << 20);
|
||||
|
||||
Reference in New Issue
Block a user