From 428f8a9b2884093b5f40b64797753871ddfa67b0 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 22 Jan 2024 16:34:46 +0000 Subject: [PATCH] Increase buffer size to avoid truncating styles, GitHub issue 3809 from Ricardo Bittencourt. --- style.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.c b/style.c index 0d7ebe86..35293a10 100644 --- a/style.c +++ b/style.c @@ -242,7 +242,7 @@ style_tostring(struct style *sy) int off = 0; const char *comma = "", *tmp = ""; static char s[256]; - char b[16]; + char b[21]; *s = '\0'; -- 2.11.4.GIT