From d21fd9242c36f3acf940e655ba1c779b57b26877 Mon Sep 17 00:00:00 2001 From: Jeffrey Ryan Date: Tue, 30 Aug 2022 19:26:39 -0500 Subject: [PATCH] rpc: dont shrink slice when loading from binary --- contrib/epee/src/portable_storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/epee/src/portable_storage.cpp b/contrib/epee/src/portable_storage.cpp index b922cc9e3..cedc58e46 100644 --- a/contrib/epee/src/portable_storage.cpp +++ b/contrib/epee/src/portable_storage.cpp @@ -49,7 +49,7 @@ namespace serialization byte_stream ss; ss.reserve(initial_buffer_size); store_to_binary(ss); - target = epee::byte_slice{std::move(ss)}; + target = epee::byte_slice{std::move(ss), false}; return true; CATCH_ENTRY("portable_storage::store_to_binary", false); }