This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 462fac0e0f tests/checkasm/vc1dsp: Use correct function argument
462fac0e0f is described below

commit 462fac0e0f4b8cccb6e6bba7c8997efb88b40c6f
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Wed Oct 15 18:28:09 2025 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Wed Feb 4 13:28:49 2026 +0100

    tests/checkasm/vc1dsp: Use correct function argument
    
    Fixes a stack-buffer overflow (detected by ASAN) when benching
    vc1dsp.
    
    Reviewed-by: James Almer <[email protected]>
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 tests/checkasm/vc1dsp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/checkasm/vc1dsp.c b/tests/checkasm/vc1dsp.c
index f18f0f8251..dda6d36257 100644
--- a/tests/checkasm/vc1dsp.c
+++ b/tests/checkasm/vc1dsp.c
@@ -323,7 +323,7 @@ static void check_inv_trans_adding(void)
             call_new(inv_trans_out1 + 24 + 8, 24, inv_trans_in1);
             if (memcmp(inv_trans_out0, inv_trans_out1, 10 * 24))
                 fail();
-            bench_new(inv_trans_out1 + 24 + 8, 24, inv_trans_in1 + 8);
+            bench_new(inv_trans_out1 + 24 + 8, 24, inv_trans_in1);
             av_free(coeffs);
         }
     }

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to