Win32: Fix uninitialized variable

This commit is contained in:
Adrian Johnson 2008-08-12 07:34:24 +09:30
parent 31565677db
commit 922df7fc23

View file

@ -1751,6 +1751,7 @@ cairo_win32_surface_create (HDC hdc)
surface->saved_dc_bitmap = NULL;
surface->brush = NULL;
surface->old_brush = NULL;
surface->font_subsets = NULL;
GetClipBox(hdc, &rect);
surface->extents.x = rect.left;