Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions clang/tools/scan-build/bin/scan-build
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ use Term::ANSIColor qw(:constants);
use Cwd qw/ getcwd abs_path /;
use Sys::Hostname;
use Hash::Util qw(lock_keys);
use URI::Escape;

my $Prog = "scan-build";
my $BuildName;
Expand Down Expand Up @@ -821,8 +820,7 @@ ENDTEXT
}

# Emit the "View" link.
my $EncodedReport = uri_escape($ReportFile, "^A-Za-z0-9\-\._~\/");
print OUT "<td><a href=\"$EncodedReport#EndPath\">View Report</a></td>";
print OUT "<td><a href=\"$ReportFile#EndPath\">View Report</a></td>";

# Emit REPORTBUG markers.
print OUT "\n<!-- REPORTBUG id=\"$ReportFile\" -->\n";
Expand Down
Loading