mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Small cosmetic fixes.
This commit is contained in:
parent
fa4289e044
commit
66dd0b8a6f
@ -47,7 +47,7 @@ MP4::Atom::Atom(File *file)
|
||||
|
||||
offset = file->tell();
|
||||
ByteVector header = file->readBlock(8);
|
||||
if (header.size() != 8) {
|
||||
if(header.size() != 8) {
|
||||
// The atom header must be 8 bytes long, otherwise there is either
|
||||
// trailing garbage or the file is truncated
|
||||
debug("MP4: Couldn't read 8 bytes of data for atom header");
|
||||
@ -96,7 +96,7 @@ MP4::Atom::Atom(File *file)
|
||||
while(file->tell() < offset + length) {
|
||||
MP4::Atom *child = new MP4::Atom(file);
|
||||
children.append(child);
|
||||
if (child->length == 0)
|
||||
if(child->length == 0)
|
||||
return;
|
||||
}
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user