Fix memory leak

This commit is contained in:
Igor Canadi 2014-01-25 13:50:30 -08:00
parent 04afa32134
commit 983fafa56c
2 changed files with 3 additions and 1 deletions

View File

@ -31,6 +31,7 @@ MemTableListVersion::MemTableListVersion(MemTableListVersion* old) {
void MemTableListVersion::Ref() { ++refs_; }
void MemTableListVersion::Unref(std::vector<MemTable*>* to_delete) {
assert(refs_ >= 1);
--refs_;
if (refs_ == 0) {
// if to_delete is equal to nullptr it means we're confident
@ -255,6 +256,7 @@ void MemTableList::InstallNewVersion() {
// somebody else holds the current version, we need to create new one
MemTableListVersion* version = current_;
current_ = new MemTableListVersion(current_);
current_->Ref();
version->Unref();
}
}

View File

@ -49,7 +49,7 @@ class MemTableListVersion {
friend class MemTableList;
std::list<MemTable*> memlist_;
int size_ = 0;
int refs_ = 1;
int refs_ = 0;
};
// This class stores references to all the immutable memtables.