mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 05:28:14 +00:00
[FONT][WIN32SS] Do not return an uninitialized variable
This commit is contained in:
parent
aecc523b6a
commit
2fa400b521
1 changed files with 2 additions and 0 deletions
|
@ -5821,6 +5821,7 @@ GreExtTextOutW(
|
||||||
{
|
{
|
||||||
DPRINT1("Failed to load glyph! [index: %d]\n", glyph_index);
|
DPRINT1("Failed to load glyph! [index: %d]\n", glyph_index);
|
||||||
IntUnLockFreeType();
|
IntUnLockFreeType();
|
||||||
|
bResult = FALSE;
|
||||||
goto Cleanup;
|
goto Cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5834,6 +5835,7 @@ GreExtTextOutW(
|
||||||
{
|
{
|
||||||
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…
Reference in a new issue