Fixed an error that prevented 'circuit1' and 'circuit2' from being

used in the general cell name format as advertised (in fact caused
a segfault), without which all setup file have to be very circuit-
specific.
This commit is contained in:
Tim Edwards 2016-12-07 22:22:57 -05:00
parent 80378d8816
commit 8300531858
1 changed files with 3 additions and 1 deletions

View File

@ -497,7 +497,9 @@ CommonParseCell(Tcl_Interp *interp, Tcl_Obj *objv,
fnum = -1;
}
else
filename = Tcl_GetString(fobj);
/* Both file numbers have been provided, so a */
/* filename is not required. */
filename = NULL;
}
else {
filename = NULL;