We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e79b78a + a7764e9 commit 8f28cedCopy full SHA for 8f28ced
compiler-rt/lib/asan/asan_allocator.cpp
@@ -745,7 +745,7 @@ struct Allocator {
745
uptr *alloc_magic = reinterpret_cast<uptr *>(alloc_beg);
746
if (alloc_magic[0] == kAllocBegMagic)
747
return reinterpret_cast<AsanChunk *>(alloc_magic[1]);
748
- // FIXME: This is either valid small chunk with tiny redzine or invalid
+ // FIXME: This is either valid small chunk with tiny redzone or invalid
749
// chunk which is beeing allocated/deallocated. The latter case should
750
// return nullptr like secondary allocator does.
751
return reinterpret_cast<AsanChunk *>(alloc_beg);
0 commit comments