Skip to content

Commit d83124b

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committedMar 28, 2025
fixup??? dir.c: make add_excludes aware of fscache during status
This is needed to suppress a new `-Wunreachable-code` report by clang. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent bbe782e commit d83124b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎dir.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -1137,8 +1137,13 @@ static int add_patterns(const char *fname, const char *base, int baselen,
11371137
* on the file and defeats the purpose of the optimization here. Since
11381138
* symlinks are even more rare than .gitignore files, we force a fstat()
11391139
* after our open() to get stat-data for the target file.
1140+
*
1141+
* Since `clang`'s `-Wunreachable-code` mode is clever, it would figure
1142+
* out that on non-Windows platforms, this `lstat()` is unreachable.
1143+
* We do want to keep the conditional block for the sake of Windows,
1144+
* though, so let's use the `NOT_CONSTANT()` trick to suppress that error.
11401145
*/
1141-
if (is_fscache_enabled(fname)) {
1146+
if (NOT_CONSTANT(is_fscache_enabled(fname))) {
11421147
if (lstat(fname, &st) < 0) {
11431148
fd = -1;
11441149
} else {

0 commit comments

Comments
 (0)