OSDN Git Service

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 3179e6e..f4b56e6 100644 (file)
@@ -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;
                }