Browse Source

plug a memory leak (in case of failing op for tran calculation)

pre-master-46
Holger Vogt 6 years ago
parent
commit
06239e567f
  1. 5
      src/spicelib/analysis/dctran.c

5
src/spicelib/analysis/dctran.c

@ -275,7 +275,10 @@ DCtran(CKTcircuit *ckt,
fflush(stdout);
}
if(converged != 0) return(converged);
if (converged != 0) {
SPfrontEnd->OUTendPlot(job->TRANplot);
return(converged);
}
#ifdef XSPICE
/* gtri - add - wbk - 12/19/90 - Add IPC stuff */

Loading…
Cancel
Save