* eoLogger: forgot to close opened file

This commit is contained in:
Caner Candan 2011-03-15 16:39:46 +01:00
commit 4f70128ab7

View file

@ -67,7 +67,9 @@ eoLogger::eoLogger()
}
eoLogger::~eoLogger()
{}
{
if (_fd > 2) { ::close(_fd); }
}
std::string eoLogger::className() const
{