[WIN32K] Fix uninitialized bResult in IntExtTextOutW.

Powered by clang-cl.
This commit is contained in:
Thomas Faber 2021-10-15 22:35:32 -04:00
parent 4bc95812fd
commit 3a323c3de0
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -6168,6 +6168,7 @@ IntExtTextOutW(
{
DPRINT1("Failed to render glyph! [index: %d]\n", glyph_index);
IntUnLockFreeType();
bResult = FALSE;
goto Cleanup;
}
@ -6243,6 +6244,7 @@ IntExtTextOutW(
{
DPRINT1("Failed to load and render glyph! [index: %d]\n", glyph_index);
IntUnLockFreeType();
bResult = FALSE;
goto Cleanup;
}
@ -6256,6 +6258,7 @@ IntExtTextOutW(
{
DPRINT1("Failed to render glyph! [index: %d]\n", glyph_index);
IntUnLockFreeType();
bResult = FALSE;
goto Cleanup;
}