diff options
author | Reid Kleckner <rnk@google.com> | 2017-10-30 17:26:13 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2017-10-30 17:26:13 +0000 |
commit | af86cba0cf19f455629a0420325d180f5ad7a441 (patch) | |
tree | 46b54291174a274af6a866efa8b7d288e280d2c3 /compiler-rt/lib/interception | |
parent | 566dbdc2fda38f69f325c7cfcee3c52caf793a85 (diff) | |
download | bcm5719-llvm-af86cba0cf19f455629a0420325d180f5ad7a441.tar.gz bcm5719-llvm-af86cba0cf19f455629a0420325d180f5ad7a441.zip |
[asan] Intercept heap routines in VS2010 CRT
Users have requested that we add it to the list:
https://github.com/google/sanitizers/issues/864
llvm-svn: 316929
Diffstat (limited to 'compiler-rt/lib/interception')
-rw-r--r-- | compiler-rt/lib/interception/interception_win.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/interception/interception_win.cc b/compiler-rt/lib/interception/interception_win.cc index 23402e555e7..ac0b0505e6f 100644 --- a/compiler-rt/lib/interception/interception_win.cc +++ b/compiler-rt/lib/interception/interception_win.cc @@ -835,6 +835,7 @@ bool OverrideFunction( static void **InterestingDLLsAvailable() { static const char *InterestingDLLs[] = { "kernel32.dll", + "msvcr100.dll", // VS2010 "msvcr110.dll", // VS2012 "msvcr120.dll", // VS2013 "vcruntime140.dll", // VS2015 |