From f72891a626df69d5cb9e70e6a3c45bb487593c2c Mon Sep 17 00:00:00 2001 From: Douglas Clowes Date: Thu, 29 Nov 2012 11:47:23 +1100 Subject: [PATCH] bigger buffers --- nxdict.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nxdict.c b/nxdict.c index 05f62d44..f4b9f3c5 100644 --- a/nxdict.c +++ b/nxdict.c @@ -174,9 +174,9 @@ static void NXDIParse(char *pBuffer, pStringDict pDict) char *pPtr; int iToken; int iMode; - char pAlias[132]; - char pDefinition[1024]; /* this is > 10 lines of definition */ - char pWord[132]; + char pAlias[1024]; + char pDefinition[8192]; /* this is > 10 lines of definition */ + char pWord[1024]; assert(pBuffer); assert(pDict);