mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:33:07 +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);
|
DPRINT1("Failed to render glyph! [index: %d]\n", glyph_index);
|
||||||
IntUnLockFreeType();
|
IntUnLockFreeType();
|
||||||
|
bResult = FALSE;
|
||||||
goto Cleanup;
|
goto Cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6243,6 +6244,7 @@ IntExtTextOutW(
|
||||||
{
|
{
|
||||||
DPRINT1("Failed to load and render glyph! [index: %d]\n", glyph_index);
|
DPRINT1("Failed to load and render glyph! [index: %d]\n", glyph_index);
|
||||||
IntUnLockFreeType();
|
IntUnLockFreeType();
|
||||||
|
bResult = FALSE;
|
||||||
goto Cleanup;
|
goto Cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6256,6 +6258,7 @@ IntExtTextOutW(
|
||||||
{
|
{
|
||||||
DPRINT1("Failed to render glyph! [index: %d]\n", glyph_index);
|
DPRINT1("Failed to render glyph! [index: %d]\n", glyph_index);
|
||||||
IntUnLockFreeType();
|
IntUnLockFreeType();
|
||||||
|
bResult = FALSE;
|
||||||
goto Cleanup;
|
goto Cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue