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 35b8aa2 commit 05d657cCopy full SHA for 05d657c
source/loader/layers/sanitizer/msan/msan_interceptor.cpp
@@ -390,7 +390,8 @@ MsanInterceptor::findAllocInfoByAddress(uptr Address) {
390
}
391
--It;
392
393
- if (Address < It->second->AllocBegin || Address >= It->second->AllocBegin + It->second->AllocSize) {
+ if (Address < It->second->AllocBegin ||
394
+ Address >= It->second->AllocBegin + It->second->AllocSize) {
395
return std::nullopt;
396
397
return It;
0 commit comments