gdi32: Fix a misplaced release_dc_ptr call.

This commit is contained in:
Alexandre Julliard 2011-10-28 11:29:34 +02:00
parent fe1f692d91
commit 26aaaa1269
1 changed files with 1 additions and 1 deletions

View File

@ -653,8 +653,8 @@ static INT FONT_EnumFontFamiliesEx( HDC hDC, LPLOGFONTW plf, FONTENUMPROCW efpro
fe.unicode = unicode;
fe.hdc = hDC;
ret = physdev->funcs->pEnumFonts( physdev, plf, FONT_EnumInstance, (LPARAM)&fe );
release_dc_ptr( dc );
}
release_dc_ptr( dc );
return ret;
}