mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/hlsproto: Use av_freep, to avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6e70e4aca5
commit
59ca6e2586
@ -80,7 +80,7 @@ static void free_segment_list(HLSContext *s)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < s->n_segments; i++)
|
||||
av_free(s->segments[i]);
|
||||
av_freep(&s->segments[i]);
|
||||
av_freep(&s->segments);
|
||||
s->n_segments = 0;
|
||||
}
|
||||
@ -89,7 +89,7 @@ static void free_variant_list(HLSContext *s)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < s->n_variants; i++)
|
||||
av_free(s->variants[i]);
|
||||
av_freep(&s->variants[i]);
|
||||
av_freep(&s->variants);
|
||||
s->n_variants = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user