ICU locale backend: Increase size of fLocaleDescription from 512 to 1024 bytes.

GCC7 gave a Werror that we were snprintf'ing potentially ~860 bytes into
a 512-byte buffer.
This commit is contained in:
waddlesplash
2018-05-19 20:44:51 -04:00
parent 39f5d71fe4
commit 3f9e3b0a62
@@ -81,7 +81,7 @@ private:
static void _DestroyThreadLocalStorageValue(void* value);
// buffer for locale names (up to one per category)
char fLocaleDescription[512];
char fLocaleDescription[1024];
// data containers
struct lconv fLocaleConv;