summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/MetadataSerializable.cpp
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-02-17 15:18:58 -0500
committerGlenn Smith <glenn@vector35.com>2025-02-17 15:24:29 -0500
commit1665263264093279027114770741018577932515 (patch)
tree3bb67f1a809a18b148473a566726b69a8b1d7659 /view/sharedcache/core/MetadataSerializable.cpp
parent3477619227198597374113056277001708164298 (diff)
Fix assert on deserialize routines_command_64
Diffstat (limited to 'view/sharedcache/core/MetadataSerializable.cpp')
-rw-r--r--view/sharedcache/core/MetadataSerializable.cpp4
1 files changed, 2 insertions, 2 deletions
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)