Skip to content

Commit 8f28ced

Browse files
author
git apple-llvm automerger
committed
Merge commit 'a7764e9d1bac' from apple/master into swift/master-next
2 parents e79b78a + a7764e9 commit 8f28ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/asan/asan_allocator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ struct Allocator {
745745
uptr *alloc_magic = reinterpret_cast<uptr *>(alloc_beg);
746746
if (alloc_magic[0] == kAllocBegMagic)
747747
return reinterpret_cast<AsanChunk *>(alloc_magic[1]);
748-
// FIXME: This is either valid small chunk with tiny redzine or invalid
748+
// FIXME: This is either valid small chunk with tiny redzone or invalid
749749
// chunk which is beeing allocated/deallocated. The latter case should
750750
// return nullptr like secondary allocator does.
751751
return reinterpret_cast<AsanChunk *>(alloc_beg);

0 commit comments

Comments
 (0)