[FFmpeg-devel] [PATCH 2/2] libavformat/hls: Free keys

Steven Liu lingjiujianke at gmail.com
Fri Sep 9 06:21:38 EEST 2022


Michael Niedermayer <michael at niedermayer.cc> 于2022年9月9日周五 06:45写道:
>
> Fixes: memleak
> Fixes: 50703/clusterfuzz-testcase-minimized-ffmpeg_dem_HLS_fuzzer-6399058578636800
>
> Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> ---
>  libavformat/hls.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/libavformat/hls.c b/libavformat/hls.c
> index 3dc7bd39309..e622425e801 100644
> --- a/libavformat/hls.c
> +++ b/libavformat/hls.c
> @@ -250,6 +250,7 @@ static void free_init_section_list(struct playlist *pls)
>  {
>      int i;
>      for (i = 0; i < pls->n_init_sections; i++) {
> +        av_freep(&pls->init_sections[i]->key);
>          av_freep(&pls->init_sections[i]->url);
>          av_freep(&pls->init_sections[i]);
>      }
> --
> 2.17.1
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".

lgtm

Thanks
Steven


More information about the ffmpeg-devel mailing list