From: Joe Orton Date: Wed, 2 Aug 2017 07:49:20 +0000 (+0100) Subject: Expand buffer size to avoid GCC 7.x warning. X-Git-Tag: R_2_2_3~6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5e20f5bc96e84f441bafa0682470e4c55ec0030;p=libexpat Expand buffer size to avoid GCC 7.x warning. --- diff --git a/expat/tests/chardata.c b/expat/tests/chardata.c index 012499bb..8e4e97a5 100644 --- a/expat/tests/chardata.c +++ b/expat/tests/chardata.c @@ -78,7 +78,7 @@ CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) int CharData_CheckString(CharData *storage, const char *expected) { - char buffer[1280]; + char buffer[4096]; int len; int count;