mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-31 19:31:02 +02:00
fuzz: use ConsumeBool() instead of !ConsumeBool()
The former is shorter and ends up with a "random" bool anyway.
This commit is contained in:
@@ -178,7 +178,7 @@ bool FuzzedSock::Wait(std::chrono::milliseconds timeout, Event requested, Event*
|
|||||||
EINTR,
|
EINTR,
|
||||||
EINVAL,
|
EINVAL,
|
||||||
};
|
};
|
||||||
if (!m_fuzzed_data_provider.ConsumeBool()) {
|
if (m_fuzzed_data_provider.ConsumeBool()) {
|
||||||
SetFuzzedErrNo(m_fuzzed_data_provider, wait_errnos);
|
SetFuzzedErrNo(m_fuzzed_data_provider, wait_errnos);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user