diff mbox series

[FFmpeg-devel] fftools/ffmpeg_mux: Fix use of uninitialized variable

Message ID AS8P250MB0744D7ED4629D86D5B69DE8E8F542@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 906fc2b2e77d9840d0738f717d4b693f2accc51c
Headers show
Series [FFmpeg-devel] fftools/ffmpeg_mux: Fix use of uninitialized variable | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt Feb. 24, 2024, 11:31 p.m. UTC
Broken in a2fc86378a18b2c2966ce3438df8f27f646438e5.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 fftools/ffmpeg_mux.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Anton Khirnov Feb. 25, 2024, 9:56 a.m. UTC | #1
Quoting Andreas Rheinhardt (2024-02-25 00:31:15)
> Broken in a2fc86378a18b2c2966ce3438df8f27f646438e5.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  fftools/ffmpeg_mux.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

ok
diff mbox series

Patch

diff --git a/fftools/ffmpeg_mux.c b/fftools/ffmpeg_mux.c
index 2c01aec665..335b8b42ca 100644
--- a/fftools/ffmpeg_mux.c
+++ b/fftools/ffmpeg_mux.c
@@ -506,14 +506,14 @@  int print_sdp(const char *filename);
 int print_sdp(const char *filename)
 {
     char sdp[16384];
-    int j, ret;
+    int j = 0, ret;
     AVIOContext *sdp_pb;
     AVFormatContext **avc;
 
     avc = av_malloc_array(nb_output_files, sizeof(*avc));
     if (!avc)
         return AVERROR(ENOMEM);
-    for (int i = 0, j = 0; i < nb_output_files; i++) {
+    for (int i = 0; i < nb_output_files; i++) {
         if (!strcmp(output_files[i]->format->name, "rtp")) {
             avc[j] = mux_from_of(output_files[i])->fc;
             j++;