Git::unquote_path(): throw an exception on bad path
authorPhillip Wood <phillip.wood@dunelm.org.uk>
Fri, 30 Jun 2017 09:49:11 +0000 (10:49 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 30 Jun 2017 15:04:59 +0000 (08:04 -0700)
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>
perl/Git.pm
index 3179e6efb29a1a88df8f90aa458fbe5f9a41d419..f4b56e6d4d38cbc4365ecfc9073f5caf3a05377a 100644 (file)
@@ -1493,8 +1493,8 @@ sub prefix_lines {
                                        $_ = $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;
                }