enough buffer for sprintf %lld

This commit is contained in:
Vitaly Lipatov 2018-06-24 02:32:52 +03:00
parent f49077de7f
commit d52dd8ff01

View File

@ -1903,7 +1903,7 @@ struct tl_combinator_tree *tl_parse_args134 (struct tree *T) {
//assert (S->data);
char *name = S->data;
if (!name) {
static char s[20];
static char s[21];
sprintf (s, "%lld", lrand48 () * (1ll << 32) + lrand48 ());
name = s;
}