Displaying 1 result from an estimated 1 matches for "f7dc2bc".
Did you mean:
47dc2b2
2013 May 03
0
[PATCH] nouveau_xv: Avoid reading off the end of the source image on NV50+
...en any ill effects in Xv rendering. The debugging
info I had added suggests that the overruns are gone when the image is
dragged partially off the screen on the left.
src/nouveau_xv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/nouveau_xv.c b/src/nouveau_xv.c
index f7dc2bc..8eafcf0 100644
--- a/src/nouveau_xv.c
+++ b/src/nouveau_xv.c
@@ -1095,7 +1095,7 @@ NVPutImage(ScrnInfoPtr pScrn, short src_x, short src_y, short drw_x,
NVCopyNV12ColorPlanes(buf + s2offset,
buf + s3offset, dst,
line_len, srcPitch2,
- nlines, line_len);
+...