gitweb: Use 's' regexp modifier to secure against filenames with LF
commit8b4b94cc7998d6312025fe3350be57c89b803f9c
authorJakub Narebski <jnareb@gmail.com>
Mon, 30 Oct 2006 21:25:11 +0000 (30 22:25 +0100)
committerJunio C Hamano <junkio@cox.net>
Wed, 1 Nov 2006 20:26:29 +0000 (1 12:26 -0800)
treed73d8205dade1d2e9c3cab50a80270d7deb90bf8
parent45bd0c808d2a89254ee50807a99b7cf1147aa6d7
gitweb: Use 's' regexp modifier to secure against filenames with LF

Use 's' (treat string as single line) regexp modifier in
git_get_hash_by_path (against future changes, probably unnecessary)
and in parse_ls_tree_line (when called with '-z'=>1 option) to secure
against filenames containing newline.

[jc: the hunk on git_get_hash_by_path was unneeded, and I noticed the
 regexp was doing unnecessary capture, so fixed it up while I was at it.]

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
gitweb/gitweb.perl