| 605 | } |
| 606 | |
| 607 | void Connection::deleteConnection(thread_db* tdbb, Connection* conn) |
| 608 | { |
| 609 | conn->m_deleting = true; |
| 610 | |
| 611 | if (conn->isConnected()) |
| 612 | conn->detach(tdbb); |
| 613 | |
| 614 | delete conn; |
| 615 | } |
| 616 | |
| 617 | Connection::~Connection() |
| 618 | { |
nothing calls this directly
no test coverage detected