diff --git a/Engine/source/core/bitVector.h b/Engine/source/core/bitVector.h index 3cd60108a..99e02222e 100644 --- a/Engine/source/core/bitVector.h +++ b/Engine/source/core/bitVector.h @@ -158,6 +158,9 @@ inline BitVector::BitVector( U32 sizeInBits ) inline BitVector::BitVector( const BitVector &r ) { + mBits = NULL; + mByteSize = 0; + mSize = 0; copy(r); }