mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-22 20:35:43 +00:00
Bug fix in fbCompositeIn_nx8x8888
Make sure both halves of the dst word is set to zero when the masks are both 0.
This commit is contained in:
parent
ae04f2cb0a
commit
6c4f1826bf
1 changed files with 1 additions and 1 deletions
|
|
@ -1900,7 +1900,7 @@ fbCompositeSolidMaskSrc_nx8x8888mmx (CARD8 op,
|
|||
}
|
||||
else
|
||||
{
|
||||
*dst = 0;
|
||||
*(ullong *)dst = 0;
|
||||
}
|
||||
|
||||
mask += 2;
|
||||
|
|
|
|||
Loading…
Reference in a new issue