summaryrefslogtreecommitdiff
path: root/worktree.c
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2018-08-28 21:20:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-08-30 16:28:02 (GMT)
commit4c5fa9e6c4091eea9d8df3466b18ddb2812cd934 (patch)
treeedd8e082bbc5fe414466daad52cff4fc4c7a4126 /worktree.c
parent2f743933341f276111103550fbf383a34dfcfd38 (diff)
downloadgit-4c5fa9e6c4091eea9d8df3466b18ddb2812cd934.zip
git-4c5fa9e6c4091eea9d8df3466b18ddb2812cd934.tar.gz
git-4c5fa9e6c4091eea9d8df3466b18ddb2812cd934.tar.bz2
worktree: don't die() in library function find_worktree()
Callers don't expect library function find_worktree() to die(); they expect it to return the named worktree if found, or NULL if not. Although find_worktree() itself never invokes die(), it calls real_pathdup() with 'die_on_error' incorrectly set to 'true', thus will die() indirectly if the user-provided path is not to real_pathdup()'s liking. This can be observed, for instance, with any git-worktree command which searches for an existing worktree: $ git worktree unlock foo fatal: 'foo' is not a working tree $ git worktree unlock foo/bar fatal: Invalid path '.../foo': No such file or directory The first error message is the expected one from "git worktree unlock" not finding the specified worktree; the second is from find_worktree() invoking real_pathdup() incorrectly and die()ing prematurely. Aside from the inconsistent error message between the two cases, this bug hasn't otherwise been a serious problem since existing callers all die() anyhow when the worktree can't be found. However, that may not be true of callers added in the future, so fix find_worktree() to avoid die()ing. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'worktree.c')
-rw-r--r--worktree.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/worktree.c b/worktree.c
index 97cda5f..b0d0b54 100644
--- a/worktree.c
+++ b/worktree.c
@@ -217,7 +217,11 @@ struct worktree *find_worktree(struct worktree **list,
if (prefix)
arg = to_free = prefix_filename(prefix, arg);
- path = real_pathdup(arg, 1);
+ path = real_pathdup(arg, 0);
+ if (!path) {
+ free(to_free);
+ return NULL;
+ }
for (; *list; list++)
if (!fspathcmp(path, real_path((*list)->path)))
break;