Description
LogAppenderPDO::close() resets non-existent $db instead of $this->db:
public function close()
{
if ($this->closed != true)
{
if ($this->db !== null)
$this->closed = true;
}
}
In a busy app the bug results in thousands of DB connections that may even cause server crash.