Re: [libav-devel] [PATCH] mpegvideo: fix loop condition in draw_line()

2013-01-19 Thread Ronald S. Bultje
Hi, On Sat, Jan 19, 2013 at 10:21 AM, Xi Wang wrote: > The loop condition `x = ex' is incorrect. It should be `x <= ex'. > > This bug was introduced in commit c65dfac4 "mpegvideo.c: K&R formatting > and cosmetics." > > Signed-off-by: Xi Wang > --- > libavcodec/mpegvideo.c |2 +- > 1 file c

[libav-devel] [PATCH] mpegvideo: fix loop condition in draw_line()

2013-01-19 Thread Xi Wang
The loop condition `x = ex' is incorrect. It should be `x <= ex'. This bug was introduced in commit c65dfac4 "mpegvideo.c: K&R formatting and cosmetics." Signed-off-by: Xi Wang --- libavcodec/mpegvideo.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mpegvide