mirror of
https://github.com/reactos/reactos.git
synced 2026-06-08 08:52:59 +08:00
[WIN32K] Fix uninitialized bResult in IntExtTextOutW.
Powered by clang-cl.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user