We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2aa7cd commit 6a42493Copy full SHA for 6a42493
source/loader/layers/sanitizer/asan/asan_interceptor.cpp
@@ -47,9 +47,9 @@ AsanInterceptor::~AsanInterceptor() {
47
// detection depends on it.
48
m_AllocationMap.clear();
49
50
- for (auto &[_, ShadowManager] : m_ShadowMap) {
51
- ShadowManager->Destory();
52
- getContext()->urDdiTable.Context.pfnRelease(ShadowManager->Context);
+ for (auto &[_, ShadowMemory] : m_ShadowMap) {
+ ShadowMemory->Destory();
+ getContext()->urDdiTable.Context.pfnRelease(ShadowMemory->Context);
53
}
54
55
for (auto Adapter : m_Adapters) {
0 commit comments