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 <phillip.wood@dunelm.org.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Phillip Wood 2017-06-30 10:49:11 +01:00 коммит произвёл Junio C Hamano
Родитель 4cebfac944
Коммит d5f28b7241
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1493,8 +1493,8 @@ when not using -z or when parsing the output of diff -u.
$_ = $2; $_ = $2;
last; last;
} }
# This is malformed -- just return it as-is for now. # This is malformed
return $_[0]; throw Error::Simple("invalid quoted path $_[0]");
} }
$_ = $remainder; $_ = $remainder;
} }