[PATCH] D55019: Add a new interceptor for fparseln(3) from NetBSD
Kamil Rytarowski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 6 20:50:22 PST 2018
krytarowski marked an inline comment as done.
krytarowski added inline comments.
================
Comment at: lib/sanitizer_common/sanitizer_common_interceptors.inc:7365
+ COMMON_INTERCEPTOR_WRITE_RANGE(ctx, len, sizeof(*len));
+ if (lineno)
+ COMMON_INTERCEPTOR_WRITE_RANGE(ctx, lineno, sizeof(*lineno));
----------------
vitalybuka wrote:
> maybe unpoison_file?
There is no sanitization of FILE right now on NetBSD.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55019/new/
https://reviews.llvm.org/D55019
More information about the llvm-commits
mailing list