]> git.sesse.net Git - ffmpeg/commitdiff
ffplay: set stream_index to -1 earlier to prevent segfault
authorPeter Ross <pross@xvid.org>
Sat, 25 Apr 2020 01:25:15 +0000 (11:25 +1000)
committerPeter Ross <pross@xvid.org>
Sat, 25 Apr 2020 02:11:11 +0000 (12:11 +1000)
Signed-off-by: Peter Ross <pross@xvid.org>
Reviewed-by: Marton Balint <cus@passwd.hu>
fftools/ffplay.c

index 1beec542933db78f9358c2fee71b12ee67e240c5..d673b8049a681854464b826d70bdf05afe22c584 100644 (file)
@@ -2775,9 +2775,6 @@ static int read_thread(void *arg)
     }
 
     memset(st_index, -1, sizeof(st_index));
-    is->last_video_stream = is->video_stream = -1;
-    is->last_audio_stream = is->audio_stream = -1;
-    is->last_subtitle_stream = is->subtitle_stream = -1;
     is->eof = 0;
 
     ic = avformat_alloc_context();
@@ -3083,6 +3080,9 @@ static VideoState *stream_open(const char *filename, AVInputFormat *iformat)
     is = av_mallocz(sizeof(VideoState));
     if (!is)
         return NULL;
+    is->last_video_stream = is->video_stream = -1;
+    is->last_audio_stream = is->audio_stream = -1;
+    is->last_subtitle_stream = is->subtitle_stream = -1;
     is->filename = av_strdup(filename);
     if (!is->filename)
         goto fail;