libwebm: changed semantics of LoadCuePoint retval

Change-Id: Iabbc82b24bde27c06b44b9f9f45e64215b9164c5
This commit is contained in:
matthewjheaney 2011-03-19 09:54:41 -04:00
parent 2083c72300
commit f2bd78ef6b

View File

@ -3059,10 +3059,11 @@ bool Cues::LoadCuePoint() const
m_pos += size; //consume payload
assert(m_pos <= stop);
break;
return true; //yes, we loaded a cue point
}
return (m_pos < stop);
//return (m_pos < stop);
return false; //no, we did not load a cue point
}