user32/tests: Release window DCs consistently.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2017-12-14 09:48:08 +03:00 committed by Alexandre Julliard
parent 224d284f99
commit 0a953f117a
4 changed files with 6 additions and 1 deletions

View File

@ -1070,6 +1070,8 @@ static void test_LoadImageBitmap(const char * test_desc, HBITMAP hbm)
ok(ret == bm.bmHeight, "%s: %d lines were converted, not %d\n", test_desc, ret, bm.bmHeight);
ok(color_match(pixel, 0x00ffffff), "%s: Pixel is 0x%08x\n", test_desc, pixel);
ReleaseDC(NULL, hdc);
}
static void test_LoadImageFile(const char * test_desc, const unsigned char * image_data,

View File

@ -99,6 +99,7 @@ static void test_updates(int style, int flags)
HDC hdc = GetDC( hStatic);
COLORREF colour = GetPixel( hdc, 10, 10);
ok ( colour != 0, "pixel should NOT be painted black!\n");
ReleaseDC(hStatic, hdc);
}
if (style != SS_ETCHEDHORZ && style != SS_ETCHEDVERT)
exp = 4;

View File

@ -2918,7 +2918,8 @@ static void test_GetSystemMetrics( void)
trace( "Captionfontchar width %d MenuFont %d,%d CaptionWidth from registry: %d screen %d,%d\n",
avcwCaption, tmMenuFont.tmHeight, tmMenuFont.tmExternalLeading, CaptionWidthfromreg, screen.cx, screen.cy);
}
ReleaseDC( 0, hdc);
DeleteDC(hdc);
}
static void test_EnumDisplaySettings(void)

View File

@ -5242,6 +5242,7 @@ static void test_scrolldc( HWND parent)
if (winetest_debug > 0) dump_region(hrgn);
/* clean up */
ReleaseDC(hwnd1, hdc);
DeleteObject(hrgn);
DeleteObject(exprgn);
DeleteObject(tmprgn);