Re: [FFmpeg-devel] [PATCH]Fix overwrite when reading invalid Quickdraw images

2015-05-17 Thread Carl Eugen Hoyos
Michael Niedermayer gmx.at> writes: > > +if (pos >= offset) > > +return AVERROR_INVALIDDATA; > > ok but theres a 2nd case below which i think needs a similar change Merged by you with the similar change. Thank you, Carl Eugen __

Re: [FFmpeg-devel] [PATCH]Fix overwrite when reading invalid Quickdraw images

2015-05-14 Thread Michael Niedermayer
On Thu, May 14, 2015 at 02:37:21PM +0200, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes an overwrite in decode_rle() for invalid pict files. > > Please comment, Carl Eugen > qdrw.c |2 ++ > 1 file changed, 2 insertions(+) > 9a329e941d8bc50cb6015d5ab69af79acd9b1d79 patchqdrw2.diff

[FFmpeg-devel] [PATCH]Fix overwrite when reading invalid Quickdraw images

2015-05-14 Thread Carl Eugen Hoyos
Hi! Attached patch fixes an overwrite in decode_rle() for invalid pict files. Please comment, Carl Eugen diff --git a/libavcodec/qdrw.c b/libavcodec/qdrw.c index 6c920aa..85aa5f4 100644 --- a/libavcodec/qdrw.c +++ b/libavcodec/qdrw.c @@ -95,6 +95,8 @@ static int decode_rle(AVCodecContext *avctx,