Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-04-09 Thread Andreas Rheinhardt
Michael Niedermayer: > On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: >> vobsub_read_packet() didn't check whether an index in array of AVPackets >> was valid and therefore used uninitialized values. >> >> Signed-off-by: Andreas Rheinhardt >> --- >> Actually I only wanted to u

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-04-09 Thread Michael Niedermayer
On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: > vobsub_read_packet() didn't check whether an index in array of AVPackets > was valid and therefore used uninitialized values. > > Signed-off-by: Andreas Rheinhardt > --- > Actually I only wanted to use Valgrind to check for mem

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-04-08 Thread Andreas Rheinhardt
Andreas Rheinhardt: > Andreas Rheinhardt: >> Michael Niedermayer: >>> On Sun, Jan 19, 2020 at 02:43:00PM +, Andreas Rheinhardt wrote: Michael Niedermayer: > On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: >> vobsub_read_packet() didn't check whether an index in

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-03-29 Thread Andreas Rheinhardt
Andreas Rheinhardt: > Michael Niedermayer: >> On Sun, Jan 19, 2020 at 02:43:00PM +, Andreas Rheinhardt wrote: >>> Michael Niedermayer: On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: > vobsub_read_packet() didn't check whether an index in array of AVPackets > wa

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-03-17 Thread Andreas Rheinhardt
Michael Niedermayer: > On Sun, Jan 19, 2020 at 02:43:00PM +, Andreas Rheinhardt wrote: >> Michael Niedermayer: >>> On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: vobsub_read_packet() didn't check whether an index in array of AVPackets was valid and therefore used

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-03-15 Thread Michael Niedermayer
On Sun, Jan 19, 2020 at 02:43:00PM +, Andreas Rheinhardt wrote: > Michael Niedermayer: > > On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: > >> vobsub_read_packet() didn't check whether an index in array of AVPackets > >> was valid and therefore used uninitialized values. >

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-03-14 Thread Andreas Rheinhardt
Andreas Rheinhardt: > On Sun, Jan 19, 2020 at 3:44 PM Andreas Rheinhardt < > andreas.rheinha...@gmail.com> wrote: > >> Michael Niedermayer: >>> On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: vobsub_read_packet() didn't check whether an index in array of AVPackets was

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-03-01 Thread Andreas Rheinhardt
On Sun, Jan 19, 2020 at 3:44 PM Andreas Rheinhardt < andreas.rheinha...@gmail.com> wrote: > Michael Niedermayer: > > On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: > >> vobsub_read_packet() didn't check whether an index in array of AVPackets > >> was valid and therefore used u

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-01-19 Thread Andreas Rheinhardt
Michael Niedermayer: > On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: >> vobsub_read_packet() didn't check whether an index in array of AVPackets >> was valid and therefore used uninitialized values. >> >> Signed-off-by: Andreas Rheinhardt >> --- >> Actually I only wanted to u

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-01-19 Thread Michael Niedermayer
On Tue, Oct 22, 2019 at 03:16:45PM +0200, Andreas Rheinhardt wrote: > vobsub_read_packet() didn't check whether an index in array of AVPackets > was valid and therefore used uninitialized values. > > Signed-off-by: Andreas Rheinhardt > --- > Actually I only wanted to use Valgrind to check for mem

Re: [FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2020-01-18 Thread Andreas Rheinhardt
On Tue, Oct 22, 2019 at 3:17 PM Andreas Rheinhardt < andreas.rheinha...@gmail.com> wrote: > vobsub_read_packet() didn't check whether an index in array of AVPackets > was valid and therefore used uninitialized values. > > Signed-off-by: Andreas Rheinhardt > --- > Actually I only wanted to use Val

[FFmpeg-devel] [PATCH 5/5] avformat/mpeg: Don't use unintialized value

2019-10-22 Thread Andreas Rheinhardt
vobsub_read_packet() didn't check whether an index in array of AVPackets was valid and therefore used uninitialized values. Signed-off-by: Andreas Rheinhardt --- Actually I only wanted to use Valgrind to check for memleaks... libavformat/mpeg.c | 4 1 file changed, 4 insertions(+) diff --