Commit 171e8328 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Fix use of uninitialized memory.

parent c42ee033
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment