Skip to content

Commit 1665263

Browse files
committed
Fix assert on deserialize routines_command_64
1 parent 3477619 commit 1665263

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

view/sharedcache/core/MetadataSerializable.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ void Deserialize(DeserializationContext& context, std::string_view name, routine
365365
return;
366366
b.cmd = bArr[0].GetUint();
367367
b.cmdsize = bArr[1].GetUint();
368-
b.init_address = bArr[2].GetUint();
369-
b.init_module = bArr[3].GetUint();
368+
b.init_address = bArr[2].GetUint64();
369+
b.init_module = bArr[3].GetUint64();
370370
}
371371

372372
void Serialize(SerializationContext& context, const function_starts_command& value)

0 commit comments

Comments
 (0)