diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-10-14 17:14:12 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-10-15 08:34:09 +0000 |
| commit | dfbcd988bf48a16945a9181a013e0182897d65a3 (patch) | |
| tree | 9623f04e758d3089c861972f6b853ca80a1bcfed /tools | |
| parent | f7ecad883569fcd9104d1296a9020cc88cbf4bc7 (diff) | |
dashboard/api: add "Link" to link fields
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/syz-reprolist/reprolist.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/syz-reprolist/reprolist.go b/tools/syz-reprolist/reprolist.go index ada367baa..34a3cefb9 100644 --- a/tools/syz-reprolist/reprolist.go +++ b/tools/syz-reprolist/reprolist.go @@ -311,7 +311,8 @@ func exportNamespace() error { if err != nil { return fmt.Errorf("makeBugDetails: %w", err) } - if cReproURL := bugDetails.Crashes[0].CReproducer; cReproURL != "" { // export max 1 CRepro per bug + // Export max 1 CRepro per bug. + if cReproURL := bugDetails.Crashes[0].CReproducerLink; cReproURL != "" { reproID := reproIDFromURL(cReproURL) fmt.Printf("[%d](%d/%d)saving c-repro %s for bug %s\n", i, iBug, len(bugURLs), reproID, bugDetails.ID) |
