Fixing a bug in Chapter::Clear

Replacing a typo'd < with > in Chapter::Clear of mkvmuxer.

Change-Id: I8784d19dbca5a8a62c92ed14e2efa61d96c5375f
This commit is contained in:
Vignesh Venkatasubramanian 2013-10-25 09:12:11 -07:00
parent 4134f6e04e
commit ddfea3431f

View File

@ -1164,7 +1164,7 @@ void Chapter::ShallowCopy(Chapter* dst) const {
void Chapter::Clear() {
StrCpy(NULL, &id_);
while (displays_count_ < 0) {
while (displays_count_ > 0) {
Display& d = displays_[--displays_count_];
d.Clear();
}