mirror of
https://github.com/taglib/taglib.git
synced 2025-07-19 21:44:24 -04:00
Skip a useless debug message.
This commit is contained in:
@ -252,7 +252,7 @@ ByteVector Frame::fieldData(const ByteVector &frameData) const
|
||||
}
|
||||
|
||||
const ByteVector outData = zlib::decompress(frameData.mid(frameDataOffset));
|
||||
if(frameDataLength != outData.size()) {
|
||||
if(!outData.isEmpty() && frameDataLength != outData.size()) {
|
||||
debug("frameDataLength does not match the data length returned by zlib");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user