From: Ahamed Husni Date: Sat, 20 Mar 2021 15:17:23 +0000 (-0600) Subject: [PATCH] Fix typo in gcc/asan.c comment X-Git-Tag: basepoints/gcc-12~508 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9c2f08475a13e8e77a9f4b1866d45b1eceaad168;p=thirdparty%2Fgcc.git [PATCH] Fix typo in gcc/asan.c comment gcc/ * asan.c: Fix typos in comments. --- diff --git a/gcc/asan.c b/gcc/asan.c index 89ecd99b1829..d7449ce7d0e2 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; @@ -1634,7 +1634,7 @@ asan_redzone_buffer::flush_if_full (void) int foo () { - char a[23] = {0}; + char a[24] = {0}; int b[2] = {0}; a[5] = 1;