From 25764d79c01a0f01e2ece5f48e0ae09590eca1a8 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 2 Apr 2011 22:35:17 +0200 Subject: [PATCH] gdiplus: Initialize a variable in SOFTWARE_GdipFillRegion to avoid a compiler warning. --- dlls/gdiplus/graphics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index 4fdfa9ce91..cecc8802b9 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c @@ -3673,7 +3673,7 @@ static GpStatus SOFTWARE_GdipFillRegion(GpGraphics *graphics, GpBrush *brush, GpRectF graphics_bounds; UINT scans_count, i; INT dummy; - GpRect *scans; + GpRect *scans = NULL; DWORD *pixel_data; if (!brush_can_fill_pixels(brush)) -- 2.32.0.93.g670b81a890