Re: [FFmpeg-devel] [PATCH 1/3] lavf/webm_chunk: Respect buffer size

2019-05-02 Thread Michael Niedermayer
On Sat, Apr 20, 2019 at 12:03:14AM +0200, Andreas Rheinhardt wrote: > The last argument of av_strlcpy is supposed to contain the size of the > destination buffer, but it was filled with the size of the source > string, effectively negating its very purpose. > > Signed-off-by: Andreas Rheinhardt

Re: [FFmpeg-devel] [PATCH 1/3] lavf/webm_chunk: Respect buffer size

2019-05-02 Thread Andreas Rheinhardt
Andreas Rheinhardt: > The last argument of av_strlcpy is supposed to contain the size of the > destination buffer, but it was filled with the size of the source > string, effectively negating its very purpose. > > Signed-off-by: Andreas Rheinhardt > --- > As the author information in my previous

Re: [FFmpeg-devel] [PATCH 1/3] lavf/webm_chunk: Respect buffer size

2019-04-25 Thread Andreas Rheinhardt
Andreas Rheinhardt: > The last argument of av_strlcpy is supposed to contain the size of the > destination buffer, but it was filled with the size of the source > string, effectively negating its very purpose. > > Signed-off-by: Andreas Rheinhardt > --- > libavformat/webm_chunk.c | 2 +- > 1

[FFmpeg-devel] [PATCH 1/3] lavf/webm_chunk: Respect buffer size

2019-04-19 Thread Andreas Rheinhardt
The last argument of av_strlcpy is supposed to contain the size of the destination buffer, but it was filled with the size of the source string, effectively negating its very purpose. Signed-off-by: Andreas Rheinhardt --- As the author information in my previous patchset has been munged, I

[FFmpeg-devel] [PATCH 1/3] lavf/webm_chunk: Respect buffer size

2019-04-13 Thread Andreas Rheinhardt via ffmpeg-devel
The last argument of av_strlcpy is supposed to contain the size of the destination buffer, but it was filled with the size of the source string, effectively negating its very purpose. Signed-off-by: Andreas Rheinhardt --- libavformat/webm_chunk.c | 2 +- 1 file changed, 1 insertion(+), 1