Plug a memory leak

This commit is contained in:
Holger Vogt 2023-05-08 20:18:55 +02:00
parent 2685df1b05
commit 6ea2882c3b
1 changed files with 3 additions and 3 deletions

View File

@ -232,16 +232,16 @@ NOISEan(CKTcircuit* ckt, int restart)
error = CKTload(ckt); error = CKTload(ckt);
if (error) return(error); if (error) return(error);
if (ckt->CKTkeepOpInfo) {
error = CKTnames(ckt, &numNames, &nameList); error = CKTnames(ckt, &numNames, &nameList);
if (error) return(error); if (error) return(error);
if (ckt->CKTkeepOpInfo) {
/* Dump operating point. */ /* Dump operating point. */
error = SPfrontEnd->OUTpBeginPlot(ckt, ckt->CKTcurJob, error = SPfrontEnd->OUTpBeginPlot(ckt, ckt->CKTcurJob,
"NOISE Operating Point", "NOISE Operating Point",
NULL, IF_REAL, NULL, IF_REAL,
numNames, nameList, IF_REAL, numNames, nameList, IF_REAL,
&plot); &plot);
txfree(nameList);
if (error) return(error); if (error) return(error);
CKTdump(ckt, 0.0, plot); CKTdump(ckt, 0.0, plot);
SPfrontEnd->OUTendPlot(plot); SPfrontEnd->OUTendPlot(plot);