make array one large to hold word whose len is == max

This commit is contained in:
Andy2 2011-11-18 21:14:24 -08:00
parent b86330c71f
commit 872ebe68f4

View file

@ -60,7 +60,7 @@ typedef struct _IndexData {
} IndexData;
typedef struct _LengthsArray {
XP_U32 lens[MAX_COLS_DICT];
XP_U32 lens[MAX_COLS_DICT+1];
} LengthsArray;
void dict_initIter( DictIter* iter, const DictionaryCtxt* dict,