summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authormartin f. krafft <madduck@madduck.net>2008-04-20 21:03:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-04-22 06:30:11 (GMT)
commitbbd4c307fc315847c975efd4c9aa32eb0e8470fb (patch)
tree988cdac57962113557c1c045319364fe2f7d437c /gitweb
parentf45741390844778f5b286cf6607cd767636e5c57 (diff)
downloadgit-bbd4c307fc315847c975efd4c9aa32eb0e8470fb.zip
git-bbd4c307fc315847c975efd4c9aa32eb0e8470fb.tar.gz
git-bbd4c307fc315847c975efd4c9aa32eb0e8470fb.tar.bz2
Escape project name in regexp
The project name, when used in a regular expression, needs to be quoted properly, so that stuff like '++' in the project name does not cause Perl to barf. Related info: http://bugs.debian.org/476076 This is a bug in Perl's CGI.pm, but fixing that exposed a similar bug in gitweb.perl Signed-off-by: martin f. krafft <madduck@madduck.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 746153f..4abd7ac 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -506,7 +506,7 @@ sub evaluate_path_info {
}
# do not change any parameters if an action is given using the query string
return if $action;
- $path_info =~ s,^$project/*,,;
+ $path_info =~ s,^\Q$project\E/*,,;
my ($refname, $pathname) = split(/:/, $path_info, 2);
if (defined $pathname) {
# we got "project.git/branch:filename" or "project.git/branch:dir/"