Apply an xserver patch from cworth: Avoid buffer ovverrun when a

trapezoid's right edge is on a pixel boundary.
This commit is contained in:
Eric Anholt 2005-08-30 03:05:21 +00:00
parent e321f9e7ff
commit 7777d325a3

View File

@ -108,7 +108,12 @@ rasterizeEdges (FbBits *buf,
AddAlpha (N_X_FRAC(N_BITS));
StepAlpha;
}
AddAlpha (rxs);
/* Do not add in a 0 alpha here. This check is necessary
* to avoid a buffer overrun when rx is exactly on a pixel
* boundary.
*/
if (rxs != 0)
AddAlpha (rxs);
}
}
#endif