summaryrefslogtreecommitdiffstats
path: root/common/storage_lmdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/storage_lmdb.cpp')
-rw-r--r--common/storage_lmdb.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/storage_lmdb.cpp b/common/storage_lmdb.cpp
index e3685a5..cb7bca4 100644
--- a/common/storage_lmdb.cpp
+++ b/common/storage_lmdb.cpp
@@ -563,6 +563,7 @@ DataStore::Transaction::Transaction(Transaction &&other) : d(nullptr)
563DataStore::Transaction &DataStore::Transaction::operator=(DataStore::Transaction &&other) 563DataStore::Transaction &DataStore::Transaction::operator=(DataStore::Transaction &&other)
564{ 564{
565 if (&other != this) { 565 if (&other != this) {
566 abort();
566 delete d; 567 delete d;
567 d = other.d; 568 d = other.d;
568 other.d = nullptr; 569 other.d = nullptr;