Bump format parsing buffer to 64K

This commit is contained in:
John Wiegley 2013-02-03 08:26:56 -06:00
parent 595a8afa44
commit 989f869747

View file

@ -129,7 +129,7 @@ format_t::element_t * format_t::parse_elements(const string& fmt,
element_t * current = NULL;
char buf[1024];
static char buf[65535];
char * q = buf;
for (const char * p = fmt.c_str(); *p; p++) {