Description of problem: There are illegal displacements as follows. So, characters displayed in windows has some lacked portion . 1. line 1805 wrong : + int rect_y2 = r->yDst + r->width; correct : + int rect_y2 = r->yDst + r->height; 2. line 1808 wrong : + if (r->xDst < y1) y1 = r->xDst; correct : + if (r->yDst < y1) y1 = r->yDst; 3. line 1815 wrong : + if (x2 <= x1 && y2 <= y1) correct : + if (x2 <= x1 || y2 <= y1) Version-Release number of selected component (if applicable): xorg-x11-server-1.5.3-1 How reproducible: always Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
This bug appears to have been reported against 'rawhide' during the Fedora 10 development cycle. Changing version to '10'. More information and reason for this action is here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping