mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-26 09:58:20 +01:00
Increase size of buf used in formatting history. French strings cause
overflow.
This commit is contained in:
parent
cce0114e66
commit
232551cd14
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue