mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-22 14:17:43 +02:00
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:
+6
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user