From: Vsevolod Stakhov Date: Tue, 18 Oct 2022 22:09:55 +0000 (+0100) Subject: [Minor] Fix error copying/move behaviour X-Git-Tag: 3.4~45 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5335bce593200298976fcd4992dcb14f86f291ed;p=rspamd.git [Minor] Fix error copying/move behaviour --- diff --git a/src/libutil/cxx/error.hxx b/src/libutil/cxx/error.hxx index 65fa76f3b..714ed309b 100644 --- a/src/libutil/cxx/error.hxx +++ b/src/libutil/cxx/error.hxx @@ -69,6 +69,34 @@ public: error_message = static_storage.value(); } + error(const error &other) : error_code(other.error_code), category(other.category) { + if (other.static_storage) { + static_storage = other.static_storage; + error_message = static_storage.value(); + } + else { + error_message = other.error_message; + } + } + + error(error &&other) noexcept { + *this = std::move(other); + } + + error& operator = (error &&other) noexcept { + if (other.static_storage.has_value()) { + std::swap(static_storage, other.static_storage); + error_message = static_storage.value(); + } + else { + std::swap(error_message, other.error_message); + } + std::swap(other.error_code, error_code); + std::swap(other.category, category); + + return *this; + } + /** * Convert into GError * @return