Skip to content

Commit 4770f80

Browse files
committed
[NFC][Asan] Fix typo in comment
1 parent 73a3d35 commit 4770f80

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)