mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/rtpdec_mpeg4: Use av_freep() to avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ef05af82b2
commit
3f56224a9a
@ -95,9 +95,9 @@ static PayloadContext *new_context(void)
|
||||
|
||||
static void free_context(PayloadContext *data)
|
||||
{
|
||||
av_free(data->au_headers);
|
||||
av_free(data->mode);
|
||||
av_free(data);
|
||||
av_freep(&data->au_headers);
|
||||
av_freep(&data->mode);
|
||||
av_freep(&data);
|
||||
}
|
||||
|
||||
static int parse_fmtp_config(AVCodecContext *codec, char *value)
|
||||
|
Loading…
Reference in New Issue
Block a user