avformat/rtpdec_mpeg4: Use av_freep() to avoid leaving stale extradata pointer

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/101/head
Michael Niedermayer 10 years ago
parent c116befc92
commit 0051e3c233
  1. 2
      libavformat/rtpdec_mpeg4.c

@ -104,7 +104,7 @@ static int parse_fmtp_config(AVCodecContext *codec, char *value)
{ {
/* decode the hexa encoded parameter */ /* decode the hexa encoded parameter */
int len = ff_hex_to_data(NULL, value); int len = ff_hex_to_data(NULL, value);
av_free(codec->extradata); av_freep(&codec->extradata);
if (ff_alloc_extradata(codec, len)) if (ff_alloc_extradata(codec, len))
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
ff_hex_to_data(codec->extradata, value); ff_hex_to_data(codec->extradata, value);

Loading…
Cancel
Save