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:
parent
41d77558b7
commit
09ff52cdc0
|
|
@ -323,9 +323,13 @@ dbReadAreaFunc(scx, err_ptr)
|
||||||
{
|
{
|
||||||
if (DBCellRead(def, TRUE, TRUE, NULL) == FALSE)
|
if (DBCellRead(def, TRUE, TRUE, NULL) == FALSE)
|
||||||
{
|
{
|
||||||
if (err_ptr != NULL) *err_ptr = def;
|
if (err_ptr != NULL) {
|
||||||
|
*err_ptr = def;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Note: we don't have to invoke DBReComputeBbox here because
|
/* Note: we don't have to invoke DBReComputeBbox here because
|
||||||
* if the bbox changed then there was a timestamp mismatch and
|
* if the bbox changed then there was a timestamp mismatch and
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue