From 1e445c49329e3c6d241f8b113e567fb858e87e06 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 8 Nov 2007 19:18:14 +0100 Subject: [PATCH] usp10: Fully initialize LOGFONT structure. --- dlls/usp10/tests/usp10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c index 052a0f4764a..1aba6db0e20 100644 --- a/dlls/usp10/tests/usp10.c +++ b/dlls/usp10/tests/usp10.c @@ -1217,7 +1217,7 @@ START_TEST(usp10) hdc = GetDC(hwnd); /* We now have a hdc */ ok( hdc != NULL, "HDC failed to be created %p\n", hdc); - memset(&lf, 0, sizeof(HFONT)); + memset(&lf, 0, sizeof(LOGFONTA)); lstrcpyA(lf.lfFaceName, "Symbol"); lf.lfHeight = 10; lf.lfWeight = 3;