From 232551cd144e7c358529848f92c706300f08591c Mon Sep 17 00:00:00 2001 From: ehouse Date: Mon, 11 Jan 2010 02:44:13 +0000 Subject: [PATCH] Increase size of buf used in formatting history. French strings cause overflow. --- xwords4/common/model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/common/model.c b/xwords4/common/model.c index b2a656d14..c36180415 100644 --- a/xwords4/common/model.c +++ b/xwords4/common/model.c @@ -1475,7 +1475,7 @@ printMovePre( ModelCtxt* model, XP_U16 XP_UNUSED(moveN), StackEntry* entry, { XWStreamCtxt* stream; const XP_UCHAR* format; - XP_UCHAR buf[32]; + XP_UCHAR buf[64]; XP_UCHAR traybuf[MAX_TRAY_TILES+1]; MovePrintClosure* closure = (MovePrintClosure*)p_closure;