mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
fuzz: Limit parse_univalue input length
This commit is contained in:
parent
ec74f45741
commit
fa80b16b20
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
// Copyright (c) 2009-2022 The Bitcoin Core developers
|
||||
// Copyright (c) 2009-present The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
|
@ -77,7 +77,7 @@ FUZZ_TARGET(parse_univalue, .init = initialize_parse_univalue)
|
|||
}
|
||||
try {
|
||||
FlatSigningProvider provider;
|
||||
(void)EvalDescriptorStringOrObject(univalue, provider);
|
||||
if (buffer.size() < 10'000) (void)EvalDescriptorStringOrObject(univalue, provider);
|
||||
} catch (const UniValue&) {
|
||||
} catch (const std::runtime_error&) {
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue