aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-10-24 19:31:16 +0200
committerTaras Madan <tarasmadan@google.com>2024-10-25 08:03:17 +0000
commit8938f604978cd5bbf8cfdce321d8d4d1740fe7c1 (patch)
tree8f6fff0266e4fb64213f924a0b35fa0c9ac3402d
parent3e1dc8b84d1939c542c83e074918ad73f7f48a84 (diff)
tools/syz-reprolist: fix double *flagDashboard prefixing
-rw-r--r--tools/syz-reprolist/reprolist.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/syz-reprolist/reprolist.go b/tools/syz-reprolist/reprolist.go
index d3cf6289c..c10a8e9b9 100644
--- a/tools/syz-reprolist/reprolist.go
+++ b/tools/syz-reprolist/reprolist.go
@@ -7,7 +7,6 @@ import (
"context"
"flag"
"fmt"
- "html"
"log"
"os"
"path"
@@ -313,8 +312,7 @@ func exportNamespace() error {
reproID := reproIDFromURL(cReproURL)
fmt.Printf("[%v](%v/%v)saving c-repro %v for bug %v\n",
i, iBug, len(bugs), reproID, bug.ID)
- fullReproURL := *flagDashboard + html.UnescapeString(cReproURL)
- cReproBody, err := cli.Text(fullReproURL)
+ cReproBody, err := cli.Text(cReproURL)
if err != nil {
return err
}