mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Fixed bug where we did not properly serialize owned objects due to a missing
dereference. llvm-svn: 43853
This commit is contained in:
parent
bd19c49b62
commit
076d1903ec
@ -91,7 +91,7 @@ public:
|
||||
EmitPtr(Ptrs[i]);
|
||||
|
||||
for (unsigned i = 0; i < NumPtrs; ++i)
|
||||
if (Ptrs[i]) SerializeTrait<T>::Emit(*this,Ptrs[i]);
|
||||
if (Ptrs[i]) SerializeTrait<T>::Emit(*this,*Ptrs[i]);
|
||||
}
|
||||
|
||||
void FlushRecord() { if (inRecord()) EmitRecord(); }
|
||||
|
Loading…
Reference in New Issue
Block a user