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,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
|
||||
|
|
|
|||
Loading…
Reference in New Issue