Corrected error introduced a while ago, probably with the addition

of cell name dereferencing on file loads, where the cell load
subroutine call ended up with the wrong number of arguments,
resulting in an invalid pointer and a crash condition.
This commit is contained in:
Tim Edwards 2020-05-20 10:09:02 -04:00
parent 45d0faaee5
commit 4066c6821b
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.10
8.3.11

View File

@ -348,7 +348,7 @@ DBTreeFindUse(name, use, scx)
if ((def->cd_flags & CDAVAILABLE) == 0)
{
bool dereference = (def->cd_flags & CDDEREFERENCE) ? TRUE : FALSE;
(void) DBCellRead(def, (char *) NULL, dereference, NULL);
(void) DBCellRead(def, (char *) NULL, TRUE, dereference, NULL);
}
scx->scx_use = use;