Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cba4ed00 authored by Tareq A. Siraj's avatar Tareq A. Siraj Committed by Edwin Vane
Browse files

Fixed redefinition of 'i' with a different type error



Renamed the redefinition of 'i' to 'k'.

Change-Id: I8ae8ed1dee42c896fa15e55be8d58b33b29254f4
Author: Tareq A. Siraj <tareq.a.siraj@intel.com>
Reviewed-by: default avatarKevin P Schoedel <kevin.p.schoedel@intel.com>
parent 1e75e972
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -902,8 +902,8 @@ void MatroskaExtractor::findThumbnails() {
                ++j;

                size_t blockSize = 0;
                for (int i = 0; i < iter.block()->GetFrameCount(); ++i) {
                    blockSize += iter.block()->GetFrame(i).len;
                for (int k = 0; k < iter.block()->GetFrameCount(); ++k) {
                    blockSize += iter.block()->GetFrame(k).len;
                }

                if (blockSize > maxBlockSize) {