diff options
author | marha <marha@users.sourceforge.net> | 2011-01-31 09:03:13 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-01-31 09:03:13 +0000 |
commit | fd713bd3b716e9fa40964902ba17e50faac93400 (patch) | |
tree | 72950181b992179f182f4998a9f6ebf6449ad447 /xorg-server | |
parent | ecad71d513263770083d0a07b0350147dcb15f2f (diff) | |
download | vcxsrv-fd713bd3b716e9fa40964902ba17e50faac93400.tar.gz vcxsrv-fd713bd3b716e9fa40964902ba17e50faac93400.tar.bz2 vcxsrv-fd713bd3b716e9fa40964902ba17e50faac93400.zip |
Solved problem of using an unitialised variable.
Diffstat (limited to 'xorg-server')
-rw-r--r-- | xorg-server/miext/rootless/rootlessScreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-server/miext/rootless/rootlessScreen.c b/xorg-server/miext/rootless/rootlessScreen.c index ca4f00c3e..9263df1fd 100644 --- a/xorg-server/miext/rootless/rootlessScreen.c +++ b/xorg-server/miext/rootless/rootlessScreen.c @@ -325,7 +325,7 @@ RootlessGlyphs(CARD8 op, PicturePtr pSrc, PicturePtr pDst, box.x1 = x - glyph->info.x;
box.y1 = y - glyph->info.y;
box.x2 = box.x1 + glyph->info.width;
- box.y2 = box.y2 + glyph->info.height;
+ box.y2 = box.y1 + glyph->info.height;
x += glyph->info.xOff;
y += glyph->info.yOff;
|