From e1ed516ae6f6c1381b2f20b2dbdceee9a84eca20 Mon Sep 17 00:00:00 2001 From: Aniket Kumar Date: Sat, 12 Jul 2025 03:05:19 +0530 Subject: [PATCH] Update qlist.cc Signed-off-by: Aniket Kumar --- src/core/qlist.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }