From 5a28f13c066954f08206317a62a8fd063bf490fc Mon Sep 17 00:00:00 2001 From: Collecting Date: Fri, 9 Jan 2026 04:43:25 +0000 Subject: [PATCH] fix(core): Properly release memory when stopping emulation Signed-off-by: Collecting --- src/common/host_memory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/host_memory.h b/src/common/host_memory.h index 72fbb05af..a73134360 100644 --- a/src/common/host_memory.h +++ b/src/common/host_memory.h @@ -69,8 +69,9 @@ public: return address >= virtual_base && address < virtual_base + virtual_size; } -private: size_t backing_size{}; + +private: size_t virtual_size{}; // Low level handler for the platform dependent memory routines