diff options
author | 2020-10-01 23:58:01 +0000 | |
---|---|---|
committer | 2020-10-01 23:58:01 +0000 | |
commit | 0f1a0f7a81dc801d9298be1881624a2e9d28d6cd (patch) | |
tree | 7da58fc843dc8d4fe60f253a7ab37f8389403c94 /cc | |
parent | 45dda43df0b32122d833d43166f2fa2f9a170889 (diff) | |
parent | 2598c9b3503cc8b5fd7c2be87d3fafd6e531fa63 (diff) |
Merge "add acknowledgements field to fuzz_config"
Diffstat (limited to 'cc')
-rw-r--r-- | cc/fuzz.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cc/fuzz.go b/cc/fuzz.go index 529541859..045384718 100644 --- a/cc/fuzz.go +++ b/cc/fuzz.go @@ -38,6 +38,9 @@ type FuzzConfig struct { // Specify whether this fuzz target was submitted by a researcher. Defaults // to false. Researcher_submitted *bool `json:"researcher_submitted,omitempty"` + // Specify who should be acknowledged for CVEs in the Android Security + // Bulletin. + Acknowledgement []string `json:"acknowledgement,omitempty"` } func (f *FuzzConfig) String() string { |