avformat/rtpdec_latm: Use av_freep() to avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ba8d2c90cd
commit
bb858e67e5
@ -45,7 +45,7 @@ static void latm_free_context(PayloadContext *data)
|
||||
avio_close_dyn_buf(data->dyn_buf, &p);
|
||||
av_free(p);
|
||||
}
|
||||
av_free(data->buf);
|
||||
av_freep(&data->buf);
|
||||
av_free(data);
|
||||
}
|
||||
|
||||
@ -72,7 +72,7 @@ static int latm_parse_packet(AVFormatContext *ctx, PayloadContext *data,
|
||||
|
||||
if (!(flags & RTP_FLAG_MARKER))
|
||||
return AVERROR(EAGAIN);
|
||||
av_free(data->buf);
|
||||
av_freep(&data->buf);
|
||||
data->len = avio_close_dyn_buf(data->dyn_buf, &data->buf);
|
||||
data->dyn_buf = NULL;
|
||||
data->pos = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user