mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-05-17 05:59:32 +08:00
fix to miscalculation of null_mask size in data.c
This commit is contained in:
parent
5d2586cde5
commit
35cfd0b31d
@ -79,7 +79,7 @@ int col_start, len;
|
|||||||
int eod; /* end of data */
|
int eod; /* end of data */
|
||||||
int delflag, lookupflag;
|
int delflag, lookupflag;
|
||||||
int bitmask_sz;
|
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_start = mdb_get_int16(mdb, 10+(row*2));
|
||||||
row_end = mdb_find_end_of_row(mdb, row);
|
row_end = mdb_find_end_of_row(mdb, row);
|
||||||
|
Loading…
Reference in New Issue
Block a user