Merge remote branch 'origin/fastpath'

* origin/fastpath:
  Adding 'delete' fixes into fastpath.
This commit is contained in:
Robin Sommer 2011-07-07 15:56:01 -07:00
commit 1ebcf4f422
2 changed files with 6 additions and 0 deletions

View file

@ -16,6 +16,9 @@ LogWriter::~LogWriter()
if ( buf )
free(buf);
for(int i = 0; i < num_fields; ++i)
delete fields[i];
delete [] fields;
}