From: Matheus Tavares Date: Thu, 9 Jul 2020 02:10:39 +0000 (-0300) Subject: entry: check for fstat() errors after checkout X-Git-Tag: v2.28.0-rc0~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=35e6e212fdea3a22abe0dc5867b974b30b787be0;p=thirdparty%2Fgit.git entry: check for fstat() errors after checkout In 11179eb311 ("entry.c: check if file exists after checkout", 2017-10-05) we started checking the result of the lstat() call done after writing a file, to avoid writing garbage to the corresponding cache entry. However, the code skips calling lstat() if it's possible to use fstat() when it still has the file descriptor open. And when calling fstat() we don't do the same error checking. To fix that, let the callers of fstat_output() know when fstat() fails. In this case, write_entry() will try to use lstat() and properly report an error if that fails as well. Signed-off-by: Matheus Tavares Signed-off-by: Junio C Hamano --- diff --git a/entry.c b/entry.c index 53380bb614..2afac33699 100644 --- a/entry.c +++ b/entry.c @@ -113,8 +113,7 @@ static int fstat_output(int fd, const struct checkout *state, struct stat *st) /* use fstat() only when path == ce->name */ if (fstat_is_reliable() && state->refresh_cache && !state->base_dir_len) { - fstat(fd, st); - return 1; + return !fstat(fd, st); } return 0; }