| Index: src/IceASanInstrumentation.cpp
|
| diff --git a/src/IceASanInstrumentation.cpp b/src/IceASanInstrumentation.cpp
|
| index fa0da638364558f35f69b98c008755c25f0f7f14..e31e4b6e3fadf2936bad2528d75d049f34e64c53 100644
|
| --- a/src/IceASanInstrumentation.cpp
|
| +++ b/src/IceASanInstrumentation.cpp
|
| @@ -47,7 +47,8 @@ using string_set = std::unordered_set<std::string>;
|
| const string_map FuncSubstitutions = {{"malloc", "__asan_malloc"},
|
| {"free", "__asan_free"},
|
| {"calloc", "__asan_calloc"},
|
| - {"__asan_dummy_calloc", "__asan_calloc"}};
|
| + {"__asan_dummy_calloc", "__asan_calloc"},
|
| + {"realloc", "__asan_realloc"}};
|
| const string_set FuncBlackList = {"_Balloc"};
|
|
|
| llvm::NaClBitcodeRecord::RecordVector sizeToByteVec(SizeT Size) {
|
|
|