Fix BitVector copy constructor.

Initialize all member variables.
This commit is contained in:
LuisAntonRebollo 2013-06-21 14:22:49 +02:00
parent 95ef5ec226
commit b700572931

View file

@ -158,6 +158,9 @@ inline BitVector::BitVector( U32 sizeInBits )
inline BitVector::BitVector( const BitVector &r )
{
mBits = NULL;
mByteSize = 0;
mSize = 0;
copy(r);
}