diff mbox series

[FFmpeg-devel,1/3] avformat: Correctly check the list before accessing

Message ID c343a895e961d1d92e7dc399a202221248e6efac.1589014205.git.gang.zhao.42@gmail.com
State New
Headers show
Series [FFmpeg-devel,1/3] avformat: Correctly check the list before accessing | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Zhao, Gang May 9, 2020, 8:50 a.m. UTC
Signed-off-by: Zhao, Gang <gang.zhao.42@gmail.com>
---
 libavformat/allformats.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git libavformat/allformats.c libavformat/allformats.c
index 3919c9e4c1..47cf885699 100644
--- libavformat/allformats.c
+++ libavformat/allformats.c
@@ -520,7 +520,7 @@  const AVOutputFormat *av_muxer_iterate(void **opaque)
 
     if (i < size) {
         f = muxer_list[i];
-    } else if (indev_list) {
+    } else if (outdev_list) {
         f = outdev_list[i - size];
     }
 
@@ -537,7 +537,7 @@  const AVInputFormat *av_demuxer_iterate(void **opaque)
 
     if (i < size) {
         f = demuxer_list[i];
-    } else if (outdev_list) {
+    } else if (indev_list) {
         f = indev_list[i - size];
     }