gdiplus: Fix use of uninitialized memory.

This commit is contained in:
Vincent Povirk 2011-07-15 13:21:09 -05:00 committed by Alexandre Julliard
parent c42ee0339a
commit 171e832839
1 changed files with 3 additions and 0 deletions

View File

@ -4713,6 +4713,9 @@ GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string
args.graphics = graphics;
args.brush = brush;
args.x = rect->X;
args.y = rect->Y;
args.rel_width = rel_width;
args.rel_height = rel_height;