]> git.sesse.net Git - vlc/commitdiff
demux: dash: missing initializer (cid #1260242, #1260245)
authorFrancois Cartegnie <fcvlcdev@free.fr>
Mon, 22 Dec 2014 17:55:27 +0000 (18:55 +0100)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Mon, 22 Dec 2014 18:21:47 +0000 (19:21 +0100)
modules/stream_filter/dash/Streams.cpp

index 766f75918063844e47413650c81db9aab08408bd..e7be308418c641ff9d6db28fa3c75972905682e9 100644 (file)
@@ -43,6 +43,7 @@ void Stream::init(const Type type_, const Format format_)
     type = type_;
     format = format_;
     output = NULL;
+    adaptationLogic = NULL;
     currentChunk = NULL;
     eof = false;
 }