From f6abe323316b4eec5aecf9307367d3f9d7906010 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 3 Aug 2023 16:58:49 -0700 Subject: [PATCH] fssystem: fix stupid issue in NodeBuffer move-ctor Code compiles with this constructor deleted, so it wasn't used, but even so... --- .../include/stratosphere/fssystem/fssystem_bucket_tree.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp b/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp index 3c075639..5f43ca42 100644 --- a/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp +++ b/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp @@ -113,7 +113,7 @@ namespace ams::fssystem { AMS_ASSERT(m_header == nullptr); } - NodeBuffer(NodeBuffer &&rhs) : m_allocator(rhs.m_allocator), m_header(rhs.m_allocator) { + NodeBuffer(NodeBuffer &&rhs) : m_allocator(rhs.m_allocator), m_header(rhs.m_header) { rhs.m_allocator = nullptr; rhs.m_header = nullptr; }