diff --git a/src/core/qlist.cc b/src/core/qlist.cc index cb2db0d66acd..c5af40dab431 100644 --- a/src/core/qlist.cc +++ b/src/core/qlist.cc @@ -395,7 +395,8 @@ QList::QList(QList&& other) len_(other.len_), fill_(other.fill_), compress_(other.compress_), - bookmark_count_(other.bookmark_count_) { + bookmark_count_(other.bookmark_count_), + compr_method_(other.compr_method_){ other.head_ = nullptr; other.len_ = other.count_ = 0; }