diff options
author | Kamil Rytarowski <n54@gmx.com> | 2018-11-02 21:06:05 +0000 |
---|---|---|
committer | Kamil Rytarowski <n54@gmx.com> | 2018-11-02 21:06:05 +0000 |
commit | 3095874d3c100261de79b4105ebd4a616332df46 (patch) | |
tree | c61a81d66062388b7a9b1b1b40afb99179ec02a1 | |
parent | b55cd69a675e0f1e3eba5677a76fc146b21c871f (diff) | |
download | bcm5719-llvm-3095874d3c100261de79b4105ebd4a616332df46.tar.gz bcm5719-llvm-3095874d3c100261de79b4105ebd4a616332df46.zip |
Try to unbreak the build of sanitizers on !NetBSD
Include the build of unpoison_passwd() and unpoison_group() for
SANITIZER_INTERCEPT_FGETPWENT_R and SANITIZER_INTERCEPT_FGETGRENT_R.
static void unpoison_passwd(
llvm-svn: 346042
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc index af09607744d..631df04588d 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc @@ -1810,7 +1810,10 @@ INTERCEPTOR(int, ioctl, int d, unsigned long request, ...) { #if SANITIZER_INTERCEPT_GETPWNAM_AND_FRIENDS || \ SANITIZER_INTERCEPT_GETPWENT || SANITIZER_INTERCEPT_FGETPWENT || \ - SANITIZER_INTERCEPT_GETPWENT_R || SANITIZER_INTERCEPT_GETPWNAM_R_AND_FRIENDS + SANITIZER_INTERCEPT_GETPWENT_R || \ + SANITIZER_INTERCEPT_GETPWNAM_R_AND_FRIENDS || \ + SANITIZER_INTERCEPT_FGETPWENT_R || \ + SANITIZER_INTERCEPT_FGETGRENT_R static void unpoison_passwd(void *ctx, __sanitizer_passwd *pwd) { if (pwd) { COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd, sizeof(*pwd)); |