Skip to content

Commit

Permalink
Skip a useless debug message.
Browse files Browse the repository at this point in the history
  • Loading branch information
TsudaKageyu committed Feb 24, 2016
1 parent 11abffc commit 6c27a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taglib/mpeg/id3v2/id3v2frame.cpp
Expand Up @@ -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");
}

Expand Down

0 comments on commit 6c27a32

Please sign in to comment.