Skip to content

Commit

Permalink
merge bitcoin#21115: Fix Windows cross build
Browse files Browse the repository at this point in the history
  • Loading branch information
kwvg committed Aug 26, 2023
1 parent 50875b5 commit 286c0de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/test/fuzz/netaddress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

#include <cassert>
#include <cstdint>
#include <netinet/in.h>
#include <vector>

FUZZ_TARGET(netaddress)
Expand Down
3 changes: 3 additions & 0 deletions src/test/fuzz/string.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,9 @@ FUZZ_TARGET(string)
}
(void)SanitizeString(random_string_1);
(void)SanitizeString(random_string_1, fuzzed_data_provider.ConsumeIntegralInRange<int>(0, 3));
#ifndef WIN32
(void)ShellEscape(random_string_1);
#endif // WIN32
uint16_t port_out;
std::string host_out;
SplitHostPort(random_string_1, port_out, host_out);
Expand Down

0 comments on commit 286c0de

Please sign in to comment.