1
0
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:
Ted Kremenek 2007-11-07 23:32:06 +00:00
parent bd19c49b62
commit 076d1903ec

View File

@ -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(); }