| 375 | } |
| 376 | |
| 377 | int match_stat_data_racy(const struct index_state *istate, |
| 378 | const struct stat_data *sd, struct stat *st) |
| 379 | { |
| 380 | if (is_racy_stat(istate, sd)) |
| 381 | return MTIME_CHANGED; |
| 382 | return match_stat_data(sd, st); |
| 383 | } |
| 384 | |
| 385 | int ie_match_stat(struct index_state *istate, |
| 386 | const struct cache_entry *ce, struct stat *st, |
no test coverage detected