[FONT][WIN32SS] Do not return an uninitialized variable

This commit is contained in:
Mark Jansen 2018-12-29 19:44:26 +01:00
parent aecc523b6a
commit 2fa400b521
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -5821,6 +5821,7 @@ GreExtTextOutW(
{
DPRINT1("Failed to load glyph! [index: %d]\n", glyph_index);
IntUnLockFreeType();
bResult = FALSE;
goto Cleanup;
}
@ -5834,6 +5835,7 @@ GreExtTextOutW(
{
DPRINT1("Failed to render glyph! [index: %d]\n", glyph_index);
IntUnLockFreeType();
bResult = FALSE;
goto Cleanup;
}