From b1b0a1a2fa4790afd30fd5a5d87a8e2f70a44e38 Mon Sep 17 00:00:00 2001 From: drac98 <58332161+drac98@users.noreply.github.com> Date: Sun, 7 Mar 2021 22:04:56 +0530 Subject: [PATCH] Update asan.c comment The size of the variable 'a' should be 24 bytes as mentioned in line no.126. --- gcc/asan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/asan.c b/gcc/asan.c index 89ecd99b18294..836f50bd44aa1 100644 --- a/gcc/asan.c +++ b/gcc/asan.c @@ -105,7 +105,7 @@ along with GCC; see the file COPYING3. If not see int foo () { - char a[23] = {0}; + char a[24] = {0}; int b[2] = {0}; a[5] = 1;