From e5ae56e37eba4695b97295380add47db1789e419 Mon Sep 17 00:00:00 2001 From: Byrial Jensen Date: Mon, 27 Feb 2012 16:56:26 +0100 Subject: [PATCH] Increase buffer size in AboutProc() to accommodate for larger text. The Danish version of the about text was truncated due to a too small buffer size. --- xboard.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xboard.c b/xboard.c index 84e0aec..8a828ae 100644 --- a/xboard.c +++ b/xboard.c @@ -6663,7 +6663,7 @@ BookProc (Widget w, XEvent *event, String *prms, Cardinal *nprms) void AboutProc (Widget w, XEvent *event, String *prms, Cardinal *nprms) { - char buf[MSG_SIZ]; + char buf[2 * MSG_SIZ]; #if ZIPPY char *zippy = _(" (with Zippy code)"); #else -- 1.7.0.4