fix to miscalculation of null_mask size in data.c

This commit is contained in:
brianb 2000-04-12 01:44:35 +00:00
parent 5d2586cde5
commit 35cfd0b31d

View File

@ -79,7 +79,7 @@ int col_start, len;
int eod; /* end of data */
int delflag, lookupflag;
int bitmask_sz;
unsigned char null_mask[8]; /* 256 columns max / 8 bits per byte */
unsigned char null_mask[17]; /* 256 columns max / 8 bits per byte */
row_start = mdb_get_int16(mdb, 10+(row*2));
row_end = mdb_find_end_of_row(mdb, row);