Fix memory leak in Collections

This closes #1729.
This commit is contained in:
Andrei Belov 2018-04-04 16:55:18 +03:00 committed by Felipe Zimmerle
parent ea7d1ff54b
commit 8285a97460
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -48,7 +48,9 @@ Collections::Collections(Collection *global,
}
Collections::~Collections() { }
Collections::~Collections() {
delete m_tx_collection;
}
} // namespace collection