From 6c4f1826bf2c5f30f5fe6e489a02b6375478b380 Mon Sep 17 00:00:00 2001 From: Soren Sandmann Pedersen Date: Fri, 27 Apr 2007 08:13:08 -0400 Subject: [PATCH] Bug fix in fbCompositeIn_nx8x8888 Make sure both halves of the dst word is set to zero when the masks are both 0. --- fb/fbmmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fb/fbmmx.c b/fb/fbmmx.c index 0e9074648..cea8ad9d5 100644 --- a/fb/fbmmx.c +++ b/fb/fbmmx.c @@ -1900,7 +1900,7 @@ fbCompositeSolidMaskSrc_nx8x8888mmx (CARD8 op, } else { - *dst = 0; + *(ullong *)dst = 0; } mask += 2;