Apparently forgot to push the last set of changed. Fixes a null

return value in EFbuild.c and adds a couple of sanity checks.
This commit is contained in:
Tim Edwards 2023-05-18 09:25:37 -04:00
parent 44b269e037
commit c514f5ce0b
3 changed files with 5 additions and 4 deletions

View File

@ -1 +1 @@
8.3.398
8.3.399

View File

@ -1374,7 +1374,8 @@ calmaFindCell(name, was_called, predefined)
* if the cell is used in a parent before being defined
* then it will cause a core dump.
*/
DBReComputeBbox(def);
DBReComputeBbox(def);
if (was_called) *was_called = FALSE;
}
else
{
@ -1385,9 +1386,9 @@ calmaFindCell(name, was_called, predefined)
if (predefined) *predefined = TRUE;
TxPrintf("Using pre-existing cell definition\n");
}
if (was_called) *was_called = TRUE;
}
HashSetValue(h, def);
if (was_called) *was_called = FALSE;
}
else
{

View File

@ -1789,7 +1789,7 @@ efNodeMerge(node1ptr, node2ptr)
/* Sanity check: ignore if same node */
if (*node1ptr == *node2ptr)
return;
return NULL;
/* Keep the node with the greater number of entries, and merge */
/* the node with fewer entries into it. */