From 09ff52cdc009dc4a0275ab4c26a2f7eb0f8694d4 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Sat, 15 Feb 2025 13:49:14 -0500 Subject: [PATCH] One additional fix which allows "gds write" to continue after a cell is found to be missing, if "gds allow undefined" has been set. --- database/DBexpand.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/database/DBexpand.c b/database/DBexpand.c index 14cb0340..d1ba588a 100644 --- a/database/DBexpand.c +++ b/database/DBexpand.c @@ -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