Corrected an error in the "permute forget" Tcl command option that
would attempt to access uninitialized variables, possibly causing a crash.
This commit is contained in:
parent
edbefbd1c4
commit
b1d40e6d12
|
|
@ -3811,8 +3811,8 @@ _netcmp_permute(ClientData clientData,
|
|||
if (PermuteForget(tp->name, fnum, NULL, NULL))
|
||||
Fprintf(stdout, "No permutations on circuit %s\n", tp->name);
|
||||
else
|
||||
Fprintf(stderr, "Unable to reset model %s pin permutation %s, %s.\n",
|
||||
tp->name, pin1, pin2);
|
||||
Fprintf(stderr, "Unable to reset model %s pin permutations.\n",
|
||||
tp->name);
|
||||
}
|
||||
return TCL_OK;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue