mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avformat/rtpdec_mpeg4: Use av_freep() to avoid leaving stale extradata pointer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c116befc92
commit
0051e3c233
@ -104,7 +104,7 @@ static int parse_fmtp_config(AVCodecContext *codec, char *value)
|
||||
{
|
||||
/* decode the hexa encoded parameter */
|
||||
int len = ff_hex_to_data(NULL, value);
|
||||
av_free(codec->extradata);
|
||||
av_freep(&codec->extradata);
|
||||
if (ff_alloc_extradata(codec, len))
|
||||
return AVERROR(ENOMEM);
|
||||
ff_hex_to_data(codec->extradata, value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user