posulliv/libcassandra

Memory leaks in cassandra.cc

Opened this issue · 0 comments

Cassandra creates Keyspace pointers and maintains them in a map. Will need to deallocate those keyspace pointers in dtor of the Cassandra.

Cassandra::~Cassandra()
{
delete thrift_client;
}

BTW, how can I contribute the project?