[FFmpeg-devel] [PATCH 10/11] avformat/wtvdec: Fix memleak when reading header fails

Peter Ross pross at xvid.org
Wed Jan 8 03:17:30 EET 2020


On Tue, Jan 07, 2020 at 02:55:48PM +0100, Andreas Rheinhardt wrote:
> Fixes #8314.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> ---
>  libavformat/wtvdec.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c
> index 706e8ca38d..92629bb31b 100644
> --- a/libavformat/wtvdec.c
> +++ b/libavformat/wtvdec.c
> @@ -993,8 +993,10 @@ static int read_header(AVFormatContext *s)
>      }
>  
>      ret = parse_chunks(s, SEEK_TO_DATA, 0, 0);
> -    if (ret < 0)
> +    if (ret < 0) {
> +        wtvfile_close(wtv->pb);
>          return ret;
> +    }
>      avio_seek(wtv->pb, -32, SEEK_CUR);
>  
>      timeline_pos = avio_tell(s->pb); // save before opening another file
> -- 
> 2.20.1

looks good. please apply.

-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20200108/36543a98/attachment.sig>


More information about the ffmpeg-devel mailing list