* eoLogger: forgot to close opened file
This commit is contained in:
parent
688003e559
commit
4f70128ab7
1 changed files with 3 additions and 1 deletions
|
|
@ -67,7 +67,9 @@ eoLogger::eoLogger()
|
||||||
}
|
}
|
||||||
|
|
||||||
eoLogger::~eoLogger()
|
eoLogger::~eoLogger()
|
||||||
{}
|
{
|
||||||
|
if (_fd > 2) { ::close(_fd); }
|
||||||
|
}
|
||||||
|
|
||||||
std::string eoLogger::className() const
|
std::string eoLogger::className() const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Reference in a new issue