Commit e8a7895c authored by Francois Cartegnie's avatar Francois Cartegnie

demux: dash: fix invalid iterator to temp

parent 5f8fc0c9
...@@ -71,6 +71,6 @@ void MPD::debug() ...@@ -71,6 +71,6 @@ void MPD::debug()
msg_Dbg(stream, "BaseUrl=%s", getUrlSegment().toString().c_str()); msg_Dbg(stream, "BaseUrl=%s", getUrlSegment().toString().c_str());
std::vector<BasePeriod *>::const_iterator i; std::vector<BasePeriod *>::const_iterator i;
for(i = getPeriods().begin(); i != getPeriods().end(); ++i) for(i = periods.begin(); i != periods.end(); ++i)
(*i)->debug(VLC_OBJECT(stream)); (*i)->debug(VLC_OBJECT(stream));
} }
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