From 1665263264093279027114770741018577932515 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 17 Feb 2025 15:18:58 -0500 Subject: Fix assert on deserialize routines_command_64 --- view/sharedcache/core/MetadataSerializable.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view/sharedcache/core/MetadataSerializable.cpp') diff --git a/view/sharedcache/core/MetadataSerializable.cpp b/view/sharedcache/core/MetadataSerializable.cpp index 312b7390..2c68ac11 100644 --- a/view/sharedcache/core/MetadataSerializable.cpp +++ b/view/sharedcache/core/MetadataSerializable.cpp @@ -365,8 +365,8 @@ void Deserialize(DeserializationContext& context, std::string_view name, routine return; b.cmd = bArr[0].GetUint(); b.cmdsize = bArr[1].GetUint(); - b.init_address = bArr[2].GetUint(); - b.init_module = bArr[3].GetUint(); + b.init_address = bArr[2].GetUint64(); + b.init_module = bArr[3].GetUint64(); } void Serialize(SerializationContext& context, const function_starts_command& value) -- cgit v1.3.1