Files
ffmpeg/libavcodec
Weidong Wang 5f3122760f avcodec/xxan: zero-initialize y_buffer
Fixes ticket #22420.

When the first decoded frame is type 1, xan_decode_frame_type1() reads y_buffer as prior-frame state before any data has been written to it.
Since y_buffer is allocated with av_malloc(), this may propagate uninitialized heap data into the decoded luma output.

Allocate y_buffer with av_mallocz() instead.

(cherry picked from commit 236dbc9f82)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2026-03-16 17:23:47 +01:00
..
2026-03-10 19:32:38 +01:00
2026-02-23 23:58:11 +01:00
2026-03-15 00:49:55 +01:00
2026-03-07 19:22:40 -03:00
2026-03-07 19:22:40 -03:00
2026-03-02 19:01:46 +01:00
2026-03-02 19:01:46 +01:00
2026-03-08 02:29:20 +01:00
2026-03-03 02:41:05 +01:00
2026-03-03 02:13:58 +00:00
2026-02-23 15:29:27 +00:00
2026-03-16 17:23:47 +01:00