]> git.sesse.net Git - vlc/commitdiff
demux: dash: missing initializer (cid #1260244)
authorFrancois Cartegnie <fcvlcdev@free.fr>
Mon, 22 Dec 2014 17:58:07 +0000 (18:58 +0100)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Mon, 22 Dec 2014 18:21:48 +0000 (19:21 +0100)
modules/stream_filter/dash/mpd/Segment.cpp

index eaf4a75ced8ea77a63dc5ec34d9169d0b6bfa07f..b5015c682ea20a9c0f2b98ab84b7eaa8aea03809 100644 (file)
@@ -253,7 +253,7 @@ dash::http::Chunk * IndexSegment::getChunk(const std::string &url)
 IndexSegment::IndexSegmentChunk::IndexSegmentChunk(ISegment *segment, const std::string &url)
     : SegmentChunk(segment, url)
 {
-
+    rep = NULL;
 }
 
 void IndexSegment::IndexSegmentChunk::setIndexRepresentation(Representation *rep_)