Skip to content

Commit 30c2167

Browse files
committed
fix format
1 parent b6d6636 commit 30c2167

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/loader/layers/sanitizer/msan/msan_interceptor.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,8 @@ MsanInterceptor::findAllocInfoByAddress(uptr Address) {
390390
}
391391
--It;
392392

393-
if (Address < It->second->AllocBegin || Address >= It->second->AllocBegin + It->second->AllocSize) {
393+
if (Address < It->second->AllocBegin ||
394+
Address >= It->second->AllocBegin + It->second->AllocSize) {
394395
return std::nullopt;
395396
}
396397
return It;

0 commit comments

Comments
 (0)