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:
parent
45d0faaee5
commit
4066c6821b
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue