We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da8518 commit 3fff776Copy full SHA for 3fff776
clang/tools/scan-build/bin/scan-build
@@ -1472,9 +1472,8 @@ sub HtmlEscape {
1472
1473
sub URLEscape {
1474
my $arg = shift || '';
1475
- my $tmp = $arg;
1476
- $tmp =~ s/\+/%2B/g;
1477
- return $tmp;
+ $arg =~ s/\+/%2B/g;
+ return $arg;
1478
}
1479
1480
##----------------------------------------------------------------------------##
0 commit comments