mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:25:52 +00:00
[WIN32K] Fix uninitialized bResult in IntExtTextOutW.
Powered by clang-cl.
This commit is contained in:
parent
4bc95812fd
commit
3a323c3de0
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue