diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-03-28 11:16:45 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-03-28 11:17:16 -0400 |
commit | cd4b0f1d87e836e78c2de92623e20284a057b500 (patch) | |
tree | 0566ed5557f1fdd4ae012750354dec14b2b9ad10 /stat.c | |
parent | f9c18e80595fae26f1d45dab5427c7122d15cb35 (diff) | |
download | bfs-cd4b0f1d87e836e78c2de92623e20284a057b500.tar.xz |
fsade: Fix msan false positive in bfs_check_acl_type()
Diffstat (limited to 'stat.c')
-rw-r--r-- | stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -172,9 +172,9 @@ static int bfs_stat_impl(int at_fd, const char *at_path, int at_flags, enum bfs_ * Wrapper for the statx() system call, which had no glibc wrapper prior to 2.28. */ static int bfs_statx(int at_fd, const char *at_path, int at_flags, unsigned int mask, struct statx *buf) { +#if BFS_HAS_FEATURE(memory_sanitizer, false) // -fsanitize=memory doesn't know about statx(), so tell it the memory // got initialized -#if BFS_HAS_FEATURE(memory_sanitizer, false) memset(buf, 0, sizeof(*buf)); #endif |