Merge pull request #224 from TsudaKageyu/memoryleak

Fixed memory leak of ByteVector
This commit is contained in:
Tsuda Kageyu
2013-05-27 08:20:38 -07:00

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)