From 4770f80a7c6f5609d3f79c3a832759c1915a73f4 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Fri, 4 Sep 2020 02:03:28 -0700 Subject: [PATCH] [NFC][Asan] Fix typo in comment --- compiler-rt/lib/asan/asan_allocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/asan/asan_allocator.cpp b/compiler-rt/lib/asan/asan_allocator.cpp index 5203382..f5c273e 100644 --- a/compiler-rt/lib/asan/asan_allocator.cpp +++ b/compiler-rt/lib/asan/asan_allocator.cpp @@ -745,7 +745,7 @@ struct Allocator { uptr *alloc_magic = reinterpret_cast(alloc_beg); if (alloc_magic[0] == kAllocBegMagic) return reinterpret_cast(alloc_magic[1]); - // FIXME: This is either valid small chunk with tiny redzine or invalid + // FIXME: This is either valid small chunk with tiny redzone or invalid // chunk which is beeing allocated/deallocated. The latter case should // return nullptr like secondary allocator does. return reinterpret_cast(alloc_beg); -- 2.7.4