diff options
author | Soren Sandmann Pedersen <ssp@dhcp83-218.boston.redhat.com> | 2007-04-27 08:13:08 -0400 |
---|---|---|
committer | Soren Sandmann Pedersen <ssp@dhcp83-218.boston.redhat.com> | 2007-04-27 08:13:45 -0400 |
commit | 6c4f1826bf2c5f30f5fe6e489a02b6375478b380 (patch) | |
tree | 81017e48fbe4c7030fa9b9c0448ffe60e9bcc738 /fb | |
parent | ae04f2cb0a068cdc1e519627bf745de0c9e4a85a (diff) |
Bug fix in fbCompositeIn_nx8x8888
Make sure both halves of the dst word is set to zero when the masks
are both 0.
Diffstat (limited to 'fb')
-rw-r--r-- | fb/fbmmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |