We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6d6636 commit 30c2167Copy full SHA for 30c2167
1 file changed
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