Skip to content

Commit 05d657c

Browse files
committed
fix format
1 parent 35b8aa2 commit 05d657c

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)