Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhillip Wood <phillip.wood@dunelm.org.uk>2023-07-05 22:49:27 +0300
committerJunio C Hamano <gitster@pobox.com>2023-07-06 00:00:28 +0300
commit498198453dbb8ae46becbc83a1ef0979a0eb805d (patch)
tree17d45570180ca97e0cbb1b9106efe2aeda6e1150 /diff-no-index.c
parenta9e066fa63149291a55f383cfa113d8bdbdaa6b3 (diff)
diff --no-index: refuse to compare stdin to a directory
When the user runs git diff --no-index file directory we follow the behavior of POSIX diff and rewrite the arguments as git diff --no-index file directory/file Doing that when "file" is "-" (which means "read from stdin") does not make sense so we should error out if the user asks us to compare "-" to a directory. This matches the behavior of GNU diff and diff on *BSD. Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff-no-index.c')
-rw-r--r--diff-no-index.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/diff-no-index.c b/diff-no-index.c
index 4296940f90..77462ac2a9 100644
--- a/diff-no-index.c
+++ b/diff-no-index.c
@@ -218,11 +218,13 @@ static void fixup_paths(const char **path, struct strbuf *replacement)
{
unsigned int isdir0, isdir1;
- if (path[0] == file_from_standard_input ||
- path[1] == file_from_standard_input)
- return;
- isdir0 = is_directory(path[0]);
- isdir1 = is_directory(path[1]);
+ isdir0 = path[0] != file_from_standard_input && is_directory(path[0]);
+ isdir1 = path[1] != file_from_standard_input && is_directory(path[1]);
+
+ if ((path[0] == file_from_standard_input && isdir1) ||
+ (isdir0 && path[1] == file_from_standard_input))
+ die(_("cannot compare stdin to a directory"));
+
if (isdir0 == isdir1)
return;
if (isdir0) {