mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 05:24:42 +00:00
avcodec/ffv1: dont leave stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d19fc69f15
commit
4d74c8d550
@ -140,7 +140,7 @@ av_cold int ffv1_init_slice_contexts(FFV1Context *f)
|
||||
fs->sample_buffer = av_malloc_array((fs->width + 6), 3 * MAX_PLANES *
|
||||
sizeof(*fs->sample_buffer));
|
||||
if (!fs->sample_buffer) {
|
||||
av_free(fs);
|
||||
av_freep(&f->slice_context[i]);
|
||||
goto memfail;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user