gdiplus: Initialize a variable in SOFTWARE_GdipFillRegion to avoid a compiler warning.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 4fdfa9c..cecc880 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -3673,7 +3673,7 @@
     GpRectF graphics_bounds;
     UINT scans_count, i;
     INT dummy;
-    GpRect *scans;
+    GpRect *scans = NULL;
     DWORD *pixel_data;
 
     if (!brush_can_fill_pixels(brush))