From: Aaron Sawdey Date: Fri, 7 Oct 2016 04:12:00 +0000 (+0000) Subject: 2016-10-06 Aaron Sawdey X-Git-Tag: upstream/12.2.0~44303 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9616e9af9b1b7e8d9fa2c3ce5688fa98fcb6504;p=platform%2Fupstream%2Fgcc.git 2016-10-06 Aaron Sawdey * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor) (rs6000_elf_asm_out_destructor): increase size of buf to avoid possible overflow. From-SVN: r240852 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9b581c3..0e8fcfd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-10-06 Aaron Sawdey + + * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor) + (rs6000_elf_asm_out_destructor): increase size of buf to avoid + possible overflow. + 2016-10-06 Andrew Pinski * config/aarch64/aarch64-cores.def: Add a comment before each diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index e93688a..e7e551d 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -34166,7 +34166,7 @@ static void rs6000_elf_asm_out_constructor (rtx symbol, int priority) { const char *section = ".ctors"; - char buf[16]; + char buf[18]; if (priority != DEFAULT_INIT_PRIORITY) { @@ -34197,7 +34197,7 @@ static void rs6000_elf_asm_out_destructor (rtx symbol, int priority) { const char *section = ".dtors"; - char buf[16]; + char buf[18]; if (priority != DEFAULT_INIT_PRIORITY) {