Fixed small memory leak and updated unit tests for DumpString

git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@5003 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2010-12-28 22:30:25 +00:00
parent 5fa682d846
commit 656d81aed9

View File

@ -61,6 +61,9 @@ IPhreeqc::IPhreeqc(void)
IPhreeqc::~IPhreeqc(void)
{
delete this->PhreeqcPtr;
delete this->SelectedOutput;
delete this->WarningReporter;
delete this->ErrorReporter;
}
VRESULT IPhreeqc::AccumulateLine(const char *line)