From a0ef520163e002c6a108b448c23defeb28df0839 Mon Sep 17 00:00:00 2001 From: uweigand Date: Fri, 14 Aug 2009 14:38:24 +0000 Subject: * c-lex.c (c_lex_with_flags): Increase size of local variable to avoid memory clobber. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150756 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-lex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/c-lex.c') diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 0b6fcc00b31..0c6cdab9dff 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -390,7 +390,7 @@ c_lex_with_flags (tree *value, location_t *loc, unsigned char *cpp_flags, case CPP_HASH: case CPP_PASTE: { - unsigned char name[4]; + unsigned char name[8]; *cpp_spell_token (parse_in, tok, name, true) = 0; -- cgit v1.2.1