[FFmpeg-cvslog] avutil/tx: add a return at the end of non-void functions

James Almer git at videolan.org
Sat Aug 7 03:24:18 EEST 2021


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Aug  6 10:29:46 2021 -0300| [35331aa2662d4289585ab1bd4d1bf7699661cc5a] | committer: James Almer

avutil/tx: add a return at the end of non-void functions

Fixes compilation with GCC 11 when configured with --disable-optimizations

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=35331aa2662d4289585ab1bd4d1bf7699661cc5a
---

 libavutil/tx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavutil/tx.c b/libavutil/tx.c
index 25adb6b37e..fa81ada2f1 100644
--- a/libavutil/tx.c
+++ b/libavutil/tx.c
@@ -38,6 +38,7 @@ static av_always_inline int mulinv(int n, int m)
         if (((n * x) % m) == 1)
             return x;
     av_assert0(0); /* Never reached */
+    return 0;
 }
 
 /* Guaranteed to work for any n, m where gcd(n, m) == 1 */



More information about the ffmpeg-cvslog mailing list