fixed missing assignment

This commit is contained in:
Martchus 2015-07-08 00:20:36 +02:00
parent a821bb9310
commit b3d1d07f1a
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ void Mp4Container::internalMakeFile()
throw OperationAbortedException(); throw OperationAbortedException();
} }
moovAtom->copyWithoutChilds(outputStream); moovAtom->copyWithoutChilds(outputStream);
for(Mp4Atom *moovChildAtom = moovAtom->firstChild(); moovChildAtom; moovChildAtom->nextSibling()) { // write child atoms manually, because the child udta has to be altered/ignored for(Mp4Atom *moovChildAtom = moovAtom->firstChild(); moovChildAtom; moovChildAtom = moovChildAtom->nextSibling()) { // write child atoms manually, because the child udta has to be altered/ignored
try { try {
moovChildAtom->parse(); moovChildAtom->parse();
} catch(Failure &) { } catch(Failure &) {