We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8389f57 + 8ef956a commit cf0a7edCopy full SHA for cf0a7ed
1 file changed
cmds/installd/tests/fuzzers/InstalldServiceFuzzer.cpp
@@ -47,6 +47,8 @@ bool force_compile_without_image() {
47
} // namespace android
48
49
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
50
+ // TODO(b/183141167): need to rewrite 'dump' to avoid SIGPIPE.
51
+ signal(SIGPIPE, SIG_IGN);
52
auto service = sp<InstalldNativeService>::make();
53
fuzzService(service, FuzzedDataProvider(data, size));
54
return 0;
0 commit comments