mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
refactor: Avoid GCC false positive error
This avoids an overly agressive GCC false positive warning: error: ‘tmp’ may be used uninitialized [-Werror=maybe-uninitialized]
This commit is contained in:
parent
fa40807fa8
commit
fa8ade300f
1 changed files with 4 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2020-2021 The Bitcoin Core developers
|
// Copyright (c) 2020-present The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
FUZZ_TARGET(float)
|
FUZZ_TARGET(float)
|
||||||
{
|
{
|
||||||
|
@ -18,7 +19,7 @@ FUZZ_TARGET(float)
|
||||||
|
|
||||||
{
|
{
|
||||||
const double d{[&] {
|
const double d{[&] {
|
||||||
double tmp;
|
std::optional<double> tmp;
|
||||||
CallOneOf(
|
CallOneOf(
|
||||||
fuzzed_data_provider,
|
fuzzed_data_provider,
|
||||||
// an actual number
|
// an actual number
|
||||||
|
@ -42,7 +43,7 @@ FUZZ_TARGET(float)
|
||||||
}); },
|
}); },
|
||||||
// Anything from raw memory (also checks that DecodeDouble doesn't crash on any input)
|
// Anything from raw memory (also checks that DecodeDouble doesn't crash on any input)
|
||||||
[&] { tmp = DecodeDouble(fuzzed_data_provider.ConsumeIntegral<uint64_t>()); });
|
[&] { tmp = DecodeDouble(fuzzed_data_provider.ConsumeIntegral<uint64_t>()); });
|
||||||
return tmp;
|
return *tmp;
|
||||||
}()};
|
}()};
|
||||||
(void)memusage::DynamicUsage(d);
|
(void)memusage::DynamicUsage(d);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue