Re: [FFmpeg-devel] [PATCH] lavfi/perlin: Fix out of bounds stack buffer write

2024-07-10 Thread Michael Niedermayer
On Tue, Jul 09, 2024 at 02:41:16PM +0200, epira...@gmail.com wrote: > > > On 6 Jul 2024, at 11:26, Stefano Sabatini wrote: > > > On date Tuesday 2024-07-02 20:38:00 +0200, Marvin Scholz wrote: > >> An incorrect calculation in ff_perlin_init causes a write to the > >> stack array at index 256, wh

Re: [FFmpeg-devel] [PATCH] lavfi/perlin: Fix out of bounds stack buffer write

2024-07-09 Thread epirat07
On 6 Jul 2024, at 11:26, Stefano Sabatini wrote: > On date Tuesday 2024-07-02 20:38:00 +0200, Marvin Scholz wrote: >> An incorrect calculation in ff_perlin_init causes a write to the >> stack array at index 256, which is out of bounds. >> >> Fixes: CID1608711 >> --- >> libavfilter/perlin.c | 2

Re: [FFmpeg-devel] [PATCH] lavfi/perlin: Fix out of bounds stack buffer write

2024-07-06 Thread Stefano Sabatini
On date Tuesday 2024-07-02 20:38:00 +0200, Marvin Scholz wrote: > An incorrect calculation in ff_perlin_init causes a write to the > stack array at index 256, which is out of bounds. > > Fixes: CID1608711 > --- > libavfilter/perlin.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > di

[FFmpeg-devel] [PATCH] lavfi/perlin: Fix out of bounds stack buffer write

2024-07-02 Thread Marvin Scholz
An incorrect calculation in ff_perlin_init causes a write to the stack array at index 256, which is out of bounds. Fixes: CID1608711 --- libavfilter/perlin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/perlin.c b/libavfilter/perlin.c index 09bae7ad33..ffad8c1e4