Merge branch 'master' into netgen-1.5

This commit is contained in:
Tim Edwards 2024-08-17 02:00:03 -04:00
commit b0d980bb7d
2 changed files with 5 additions and 3 deletions

View File

@ -1 +1 @@
1.5.276 1.5.277

View File

@ -600,8 +600,10 @@ int flattenInstancesOf(char *name, int fnum, char *instance)
else break; else break;
/* Put the child cell at the start of ChildObjList */ /* Put the child cell at the start of ChildObjList */
ChildEnd->next = ChildObjList; if (ChildEnd) {
ChildObjList = ChildStart; ChildEnd->next = ChildObjList;
ChildObjList = ChildStart;
}
} }
/* Put the child cell at the start of ChildObjList */ /* Put the child cell at the start of ChildObjList */