bug fix, CKTcurJob, make sure this is either up do date or NULL
This commit is contained in:
parent
60adbdc716
commit
30abcd3c32
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-01-07 Robert Larice
|
||||||
|
* src/spicelib/analysis/cktdojob.c :
|
||||||
|
bug fix, CKTcurJob, make sure this is either up do date or NULL
|
||||||
|
fix a valgrind report, access to allready freed memory during CKTtemp()
|
||||||
|
|
||||||
2012-01-05 Holger Vogt
|
2012-01-05 Holger Vogt
|
||||||
* inpdomod.c: bug in error message for bjt removed
|
* inpdomod.c: bug in error message for bjt removed
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,9 @@ CKTdoJob(CKTcircuit *ckt, int reset, TSKtask *task)
|
||||||
FREE(ckt->CKTsenInfo);
|
FREE(ckt->CKTsenInfo);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* make sure this is either up do date or NULL */
|
||||||
|
ckt->CKTcurJob = NULL;
|
||||||
|
|
||||||
/* normal reset */
|
/* normal reset */
|
||||||
if (!error)
|
if (!error)
|
||||||
error = CKTunsetup(ckt);
|
error = CKTunsetup(ckt);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue