Commit 32fb83e4 authored by Jun Zhao's avatar Jun Zhao

lavc/hls: Cosmetics: Fix indentation for free_segment_list

Commit 673d8cfd missed the indent
Signed-off-by: 's avatarJun Zhao <mypopydev@gmail.com>
parent 399c8e86
......@@ -223,9 +223,9 @@ static void free_segment_dynarray(struct segment **segments, int n_segments)
static void free_segment_list(struct playlist *pls)
{
free_segment_dynarray(pls->segments, pls->n_segments);
av_freep(&pls->segments);
pls->n_segments = 0;
free_segment_dynarray(pls->segments, pls->n_segments);
av_freep(&pls->segments);
pls->n_segments = 0;
}
static void free_init_section_list(struct playlist *pls)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment