Skip to content

Commit 864e2e9

Browse files
committed
fuzz: increase length of string used for NetWhitelist{bind}Permissions::TryParse
1 parent 801ef07 commit 864e2e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/fuzz/net_permissions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
FUZZ_TARGET(net_permissions)
1818
{
1919
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
20-
const std::string s = fuzzed_data_provider.ConsumeRandomLengthString(32);
20+
const std::string s = fuzzed_data_provider.ConsumeRandomLengthString(1000);
2121
const NetPermissionFlags net_permission_flags = ConsumeWeakEnum(fuzzed_data_provider, ALL_NET_PERMISSION_FLAGS);
2222

2323
NetWhitebindPermissions net_whitebind_permissions;

0 commit comments

Comments
 (0)