From: Phillip Wood Date: Fri, 30 Jun 2017 09:49:11 +0000 (+0100) Subject: Git::unquote_path(): throw an exception on bad path X-Git-Tag: v2.14.0-rc0~22^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d5f28b724192e9172d0a013dd7b2ca20fd1bbb9b;p=thirdparty%2Fgit.git Git::unquote_path(): throw an exception on bad path This is what the other routines in Git.pm do if there's an error. Signed-off-by: Phillip Wood Signed-off-by: Junio C Hamano --- diff --git a/perl/Git.pm b/perl/Git.pm index 3179e6efb2..f4b56e6d4d 100644 --- a/perl/Git.pm +++ b/perl/Git.pm @@ -1493,8 +1493,8 @@ when not using -z or when parsing the output of diff -u. $_ = $2; last; } - # This is malformed -- just return it as-is for now. - return $_[0]; + # This is malformed + throw Error::Simple("invalid quoted path $_[0]"); } $_ = $remainder; }