summaryrefslogtreecommitdiff
path: root/run-command.c
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2021-02-12 14:50:09 (GMT)
committerJohannes Schindelin <johannes.schindelin@gmx.de>2021-02-12 14:50:09 (GMT)
commit3f01e56686b2fd08d919306717764391409ac81e (patch)
tree963c21688877ce094e0ff3f2e6ff0ca559db7fff /run-command.c
parent47ae905ffb98cc4d4fd90083da6bc8dab55d9ecc (diff)
parent6ff7f460394745395f3eec1e414ad2300c6a402f (diff)
downloadgit-3f01e56686b2fd08d919306717764391409ac81e.zip
git-3f01e56686b2fd08d919306717764391409ac81e.tar.gz
git-3f01e56686b2fd08d919306717764391409ac81e.tar.bz2
Sync with 2.27.1
* maint-2.27: Git 2.27.1 Git 2.26.3 Git 2.25.5 Git 2.24.4 Git 2.23.4 Git 2.22.5 Git 2.21.4 Git 2.20.5 Git 2.19.6 Git 2.18.5 Git 2.17.6 unpack_trees(): start with a fresh lstat cache run-command: invalidate lstat cache after a command finished checkout: fix bug that makes checkout follow symlinks in leading path
Diffstat (limited to 'run-command.c')
-rw-r--r--run-command.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/run-command.c b/run-command.c
index a735e38..ef9eb5b 100644
--- a/run-command.c
+++ b/run-command.c
@@ -989,6 +989,7 @@ int finish_command(struct child_process *cmd)
int ret = wait_or_whine(cmd->pid, cmd->argv[0], 0);
trace2_child_exit(cmd, ret);
child_process_clear(cmd);
+ invalidate_lstat_cache();
return ret;
}
@@ -1290,13 +1291,19 @@ error:
int finish_async(struct async *async)
{
#ifdef NO_PTHREADS
- return wait_or_whine(async->pid, "child process", 0);
+ int ret = wait_or_whine(async->pid, "child process", 0);
+
+ invalidate_lstat_cache();
+
+ return ret;
#else
void *ret = (void *)(intptr_t)(-1);
if (pthread_join(async->tid, &ret))
error("pthread_join failed");
+ invalidate_lstat_cache();
return (int)(intptr_t)ret;
+
#endif
}