Commit 15420e98 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: adaptative: fix iterator bound

parent a64f24a7
......@@ -61,7 +61,7 @@ void BaseRepresentation::debug(vlc_object_t *obj, int indent) const
msg_Dbg(obj, "%s", text.c_str());
std::vector<ISegment *> list = getSegments();
std::vector<ISegment *>::const_iterator l;
for(l = list.begin(); l < list.end(); ++l)
for(l = list.begin(); l != list.end(); ++l)
(*l)->debug(obj, indent + 1);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment