Fixed memory leak of ByteVector

This commit is contained in:
Tsuda Kageyu 2013-05-28 00:02:09 +09:00
parent dfee045d46
commit e73afa3325

View File

@ -508,7 +508,6 @@ ByteVector::ByteVector(const ByteVector &v)
ByteVector::ByteVector(const ByteVector &v, uint offset, uint length)
: d(new ByteVectorPrivate(v.d, offset, length))
{
d->ref();
}
ByteVector::ByteVector(char c)