mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Skip a useless debug message.
This commit is contained in:
parent
11abffc0f6
commit
6c27a32de8
@ -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");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user