Closed GoogleCodeExporter closed 9 years ago
You have:
std::auto_ptr<leveldb::DB> m_db;
std::auto_ptr<leveldb::Cache> m_cache;
This means m_cache will be deleted before the db object is deleted. This is
not allowed. The cache passed to db must remain live until the db has been
deleted.
Original comment by san...@google.com
on 25 Jan 2013 at 7:35
Original issue reported on code.google.com by
vladimir...@gmail.com
on 25 Jan 2013 at 1:16Attachments: