mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 09:40:18 +00:00
vdec/jpegxs: zero-init svt_jpeg_xs_bitstream_buffer_t
maybe not 100% required but it is a good practice fixes CID 900815
This commit is contained in:
@@ -270,7 +270,7 @@ static decompress_status jpegxs_decompress(void *state, unsigned char *dst, unsi
|
||||
}
|
||||
}
|
||||
|
||||
svt_jpeg_xs_bitstream_buffer_t bitstream;
|
||||
svt_jpeg_xs_bitstream_buffer_t bitstream{};
|
||||
bitstream.buffer = buffer;
|
||||
bitstream.used_size = src_len;
|
||||
bitstream.allocation_size = src_len;
|
||||
|
||||
Reference in New Issue
Block a user