mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +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);
|
||||
IntUnLockFreeType();
|
||||
bResult = FALSE;
|
||||
goto Cleanup;
|
||||
}
|
||||
|
||||
|
@ -5834,6 +5835,7 @@ GreExtTextOutW(
|
|||
{
|
||||
DPRINT1("Failed to render glyph! [index: %d]\n", glyph_index);
|
||||
IntUnLockFreeType();
|
||||
bResult = FALSE;
|
||||
goto Cleanup;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue