You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/vc2enc_dwt: Avoid NULL - 0
It is sane, but UB. It could happen in case of allocation errors in vc2_encode_init(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -276,6 +276,8 @@ av_cold int ff_vc2enc_init_transforms(VC2TransformContext *s, int p_stride,
|
|||||||
|
|
||||||
av_cold void ff_vc2enc_free_transforms(VC2TransformContext *s)
|
av_cold void ff_vc2enc_free_transforms(VC2TransformContext *s)
|
||||||
{
|
{
|
||||||
|
if (s->buffer) {
|
||||||
av_free(s->buffer - s->padding);
|
av_free(s->buffer - s->padding);
|
||||||
s->buffer = NULL;
|
s->buffer = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user