[PATCH] D65221: [Sanitizer][ASAN][MSAN] Fix infinite recursion on FreeBSD
Dimitry Andric via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Jul 28 03:00:39 PDT 2019
dim added inline comments.
================
Comment at: compiler-rt/lib/sanitizer_common/sanitizer_linux.cc:788
+ CHECK(real_sysctlbyname);
+ return real_sysctlbyname(sname, oldp, (size_t *)oldlenp, newp, (size_t)newlen);
}
----------------
Note that I got an 80 column -Werror warning about this line. Please move the `(size_t) newlen` part to the next line.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65221/new/
https://reviews.llvm.org/D65221
More information about the llvm-commits
mailing list