mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-22 21:55:52 +00:00
Fix mismatched serialising on remote server code, std::vector both sides
This commit is contained in:
@@ -869,12 +869,11 @@ public:
|
||||
|
||||
if(ser)
|
||||
{
|
||||
uint32_t count = 0;
|
||||
ser->Serialise("", count);
|
||||
std::vector<PathEntry> paths;
|
||||
|
||||
create_array_uninit(ret, count);
|
||||
for(uint32_t i = 0; i < count; i++)
|
||||
ser->Serialise("", ret[i]);
|
||||
ser->Serialise("", paths);
|
||||
|
||||
ret = paths;
|
||||
|
||||
delete ser;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user