[PATCH] D54993: Add interceptors for md5(3) from NetBSD
Vitaly Buka via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 5 01:44:19 PST 2018
vitalybuka requested changes to this revision.
vitalybuka added inline comments.
This revision now requires changes to proceed.
================
Comment at: lib/sanitizer_common/sanitizer_common_interceptors.inc:7364
+ if (data)
+ COMMON_INTERCEPTOR_READ_RANGE(ctx, data, len);
+ if (context)
----------------
needs writes
================
Comment at: lib/sanitizer_common/sanitizer_common_interceptors.inc:7371
+INTERCEPTOR(void, MD5Final, unsigned char digest[16], void *context) {
+ void *ctx;
+ COMMON_INTERCEPTOR_ENTER(ctx, MD5Final, digest, context);
----------------
read context
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54993/new/
https://reviews.llvm.org/D54993
More information about the llvm-commits
mailing list