diff options
| author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2021-02-12 15:49:35 +0100 |
|---|---|---|
| committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2021-02-12 15:49:35 +0100 |
| commit | b1726b1a38ee913cec7c72f4f4a5fe0c4b386386 (patch) | |
| tree | 507edce7937738c2a1b92a9da9d728f39fb85b83 /run-command.c | |
| parent | 9206d27eb5e76bbb3a4e59e3c53f92eaa0caa97b (diff) | |
| parent | 8b1a5f33d3ed427b0a6eaee595537805db6bc38c (diff) | |
| download | git-b1726b1a38ee913cec7c72f4f4a5fe0c4b386386.tar.xz | |
Sync with 2.20.5
* maint-2.20:
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.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/run-command.c b/run-command.c index 3db26b7b0e..d61638c3dd 100644 --- a/run-command.c +++ b/run-command.c @@ -965,6 +965,7 @@ int finish_command(struct child_process *cmd) { int ret = wait_or_whine(cmd->pid, cmd->argv[0], 0); child_process_clear(cmd); + invalidate_lstat_cache(); return ret; } @@ -1251,13 +1252,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 } |
