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.
1 parent 73a3d35 commit 4770f80Copy full SHA for 4770f80
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