Core: Fix missing tailing bytes of video logs

This commit is contained in:
Vicki Pfau 2017-04-24 12:56:24 -07:00
parent aec8b82756
commit 5cda42077c
1 changed files with 1 additions and 1 deletions

View File

@ -834,7 +834,7 @@ static bool _fillBuffer(struct mVideoLogContext* context, size_t channelId, size
return false;
}
if (header.blockType == mVL_BLOCK_FOOTER) {
return false;
return true;
}
if (header.channelId != channelId || header.blockType != mVL_BLOCK_DATA) {
context->backing->seek(context->backing, header.length, SEEK_CUR);