fixed memory leak at DataMatrix decoding

This commit is contained in:
favoritas37 2017-04-15 12:08:30 +03:00
parent e3152c2e3e
commit 02d8e6b6ff

View File

@ -410,6 +410,7 @@ void DecodedBitStreamParser::decodeBase256Segment(Ref<BitSource> bits, ostringst
byteSegments.push_back(bytes[i]);
result << (byte)bytes[i];
}
delete bytes;
}
}
}