From fd713bd3b716e9fa40964902ba17e50faac93400 Mon Sep 17 00:00:00 2001 From: marha Date: Mon, 31 Jan 2011 09:03:13 +0000 Subject: Solved problem of using an unitialised variable. --- xorg-server/miext/rootless/rootlessScreen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xorg-server/miext/rootless/rootlessScreen.c') 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; -- cgit v1.2.3