One additional fix which allows "gds write" to continue after a

cell is found to be missing, if "gds allow undefined" has been
set.
This commit is contained in:
Tim Edwards 2025-02-15 13:49:14 -05:00
parent 41d77558b7
commit 09ff52cdc0
1 changed files with 6 additions and 2 deletions

View File

@ -323,8 +323,12 @@ dbReadAreaFunc(scx, err_ptr)
{
if (DBCellRead(def, TRUE, TRUE, NULL) == FALSE)
{
if (err_ptr != NULL) *err_ptr = def;
return 1;
if (err_ptr != NULL) {
*err_ptr = def;
return 1;
}
else
return 0;
}
/* Note: we don't have to invoke DBReComputeBbox here because